ClientService
The entry-point for EBIS client implementations is always an instance of the ClientService interface. This must be instantiated via the DefaultClientService class. All other objects of the EBIS object model are created explicitly or implicitly by that object (Factory method pattern).
Java
IClientService service = new DefaultClientService(ebisURI); C#
ClientService service = new DefaultClientService(uri);