ConnectorHost
defines a host where a connector is running. It may be a definition for remote connector host, remote connector framework or a remote "gateway". It is not a definition of a single connector but rather a definition of host that can host several connectors.
This is a generic concept of a connector host, not specific to any connector framework. It can be extended with a framework-specific configuration using the usual "extension" element if needed.
Property | Type | Description |
---|---|---|
hostname | string | Hostname or IP address of the connector host. |
port | string | Port number of the remote service. If not present, default port number is assumed by the implementation (may depend of connector framework). |
sharedSecret | ProtectedStringType | Shared secret used to authenticate client (midPoint) to the host. |
protectConnection | boolean | If set to true then a protected connection will be established (usually SSL). (default: false) |
timeout | int | Timeout (in milliseconds) used when initially connecting to the host or during other connections when timeout is not otherwise specified. |
Samples
<connectorHost xmlns="http://midpoint.evolveum.com/xml/ns/public/common/common-3" xmlns:t="http://prism.evolveum.com/xml/ns/public/types-3"> <name>ICF Connector server on localhost:8759</name> <hostname>localhost</hostname> <port>8759</port> <sharedSecret> <t:clearValue>secret</t:clearValue> </sharedSecret> </connectorHost>