The Client Adapter Configuration

Client adapters are configured by instantiating the provca::Config interface and loading the configuration instance in the client adapter.

The provca::Config references several other configuration interfaces and factories that can be used to reference custom implementations of SessionFactory and others.

Derived client adapters may need to add their own configuration parameters. In this case, an interface inheriting the basic configuration interface is needed and the configure operation of the client adapter must be overloaded.

You can use the following IDLos as a framework for your configuration interface:

package tcpca
{ 
        interface Config : provca::Config
        {
        };
};