Client Libraries for Microsoft .Net Framework
The client libraries for Microsoft .Net Framework are located on the CD in the "clientBundles\ms.net subdirectory". These are currently three DLLs plus a JSON Framework library. These use "strong names" and have a signature from EASY SOFTWARE. The version of the EBIS plug-in used must be higher than or identical to the client version; it is not compatible with predecessors. The DLLs can be installed in the Global Assembly Cache of the Windows installation or locally assigned to the project used. When using .Net Framework 4.0, the use of the client profile variation is not recommended.
Any CLR-capable language can be used.
Reference documentation
Reference documentation is available in two versions.
The *.chm format is no longer included, because Microsoft no longer supports this format.
Online documentation
Online documentation can be found at https://docs.easy.de.
Using HTTPS/SSL
HTTPS or SSL do not differ from HTTP regarding their use. It requires availability of HTTPS/SSL on the EASY Archive Web server plug-in.
Uri uri = new Uri("https://ebisssl:9443");ClientService service = new DefaultClientService(uri);
ClientService service = new DefaultClientService("https://ebisssl:9443");
HTTPS and SSL can also be used via a proxy.
To suppress checking SSL certificates (e.g. for certificates you issued yourself), you can use the following call from the EBIS API:
Easy.Business.Utils.ServiceUtils.ByPassSSLCheck = true;