Class IntradocClient
The Intradoc implementation of the IDC client. This will communicate via the Content Server IntradocPort (4444) in either plain sockets or SSL sockets. The protocol uses the Content Server HDA format to serialize the DataBinder.
The intradoc client requires the Content Server have the IP address of the client added to the "Trusted Hosts" property. This establishes a trusted connection between the Content Server and the client. The intradoc client does not require a password for any request and therefore the obligation of authentication is pushed into the client application.
The client uses a BlockingQueue
object to control the flow of requests to the Content
Server; this is configurable, along with other client properties, via the IntradocClientConfig
object.
-
Constructor Summary
ConstructorsConstructorDescriptionIntradocClient
(IdcClientManager clientManager, IntradocClientConfig clientConfig) -
Method Summary
Modifier and TypeMethodDescriptionCreate the connection managerprotected IntradocProtocol
createProtocol
(ServiceRequest<SocketConnection> serviceRequest) Create the protocol to handle the requeststatic SocketConnectionManager
getSocketManager
(String name) static void
registerSocketFactory
(String name, SocketConnectionManager socketFactory) Methods inherited from class oracle.stellent.ridc.IdcClient
createBinder, createConnectionPool, createRequest, createResponse, getClientManager, getConfig, getConnectionManager, getConnectionPool, getDataFactory, getVersion, initialize, isCompatible, isInitialized, logout, logout, sendRequest, sendRequest, setDataFactory, setInitialized
-
Constructor Details
-
IntradocClient
-
-
Method Details
-
registerSocketFactory
@Concealed public static void registerSocketFactory(String name, SocketConnectionManager socketFactory) -
getSocketManager
-
createConnectionManager
@Concealed protected ConnectionManager<SocketConnection,IntradocClientConfig> createConnectionManager()Create the connection manager- Specified by:
createConnectionManager
in classIdcClient<IntradocClientConfig,
IntradocProtocol, SocketConnection> - Returns:
- a new connection manager
-
createProtocol
@Concealed protected IntradocProtocol createProtocol(ServiceRequest<SocketConnection> serviceRequest) Create the protocol to handle the request- Specified by:
createProtocol
in classIdcClient<IntradocClientConfig,
IntradocProtocol, SocketConnection> - Parameters:
serviceRequest
- the connection object- Returns:
- the protocol handler
-