|
Platform SDK Java 8.5 API Reference | |||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |
Protocol
classes that your applications
can use to set up communication with Configuration Server.
See:
Description
Interface Summary | |
---|---|
ConfServerProtocolHandshakeOptions | Dedicated interface to represent Configuration Server protocol handshake parameters. |
Class Summary | |
---|---|
ConfServerContext | Context container for opened Configuration Server Protocol connection. |
ConfServerProtocol | Use a ConfServerProtocol object to establish
communication between application and Genesys Configuration Server. |
ConfServerProtocolListener | Customized ServerChannel component for handling of Genesys Configuration Server protocol clients. Here is a simple example of synchronous server side procedure:
|
This package contains the Protocol
classes that your applications
can use to set up communication with Configuration Server.
These classes include
ConfServerProtocol.
When you write your applications, you will need to set up and open the
appropriate Protocol
object, as shown here:
ConfServerProtocol confServerProtocol =
new ConfServerProtocol(
new Endpoint(
confServerUri));
confServerProtocol.setClientApplicationType(clientApplicationType);
confServerProtocol.setClientName("name");
confServerProtocol.setUserName(userName);
confServerProtocol.setUserPassword(userPassword);
confServerProtocol.open();
At that point you will be able to send messages to and receive from the Configuration
Server you have connected with.
For more information on these messages, please
refer to the documentation for the events
and requests
packages
associated with this SDK, for example
com.genesyslab.platform.configuration.protocol.confserver.events
or
com.genesyslab.platform.configuration.protocol.confserver.requests.objects
.
For general information on the structure and usage of the Platform SDKs, or detailed information on configuration database objects, please refer to the Platform SDK Developer's Guide.
ConfServerProtocol supports Kerberos authentication. For more information on using Kerberos, refer to the documentation for classConfServerProtocol
.
|
Platform SDK Java 8.5 API Reference | |||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |