Logical Systems
The EBIS plug-in uses logical systems to identify the system. The EBIS client API provides a unified interface for that system. The EBIS API uses a URL to access the logical system's resources.
The technical equivalent of a logical system is the Instance interface.
.Net: Easy.Business.Instance
Java: de.easy.ebis.client.IInstance
This is accessed via the name, e.g.:
Java
IClientService service = new DefaultClientService(ebisURI);IInstance instance = service.getInstance("Default"); C#
ClientService service = new DefaultClientService(uri);Instance instance = service.GetInstance("Default");