ConnectorHostType

Last modified 15 Nov 2021 14:56 +01:00
OUTDATED
This page is outdated, it contains information that was not updated in a long time. The described functionality may or may not work. Do not rely on information provided on this page.

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
optional

Port number of the remote service. If not present, default port number is assumed by the implementation (may depend of connector framework).

sharedSecret

ProtectedStringType
optional

Shared secret used to authenticate client (midPoint) to the host.

protectConnection

boolean
optional

If set to true then a protected connection will be established (usually SSL). (default: false)

timeout

int
optional

Timeout (in milliseconds) used when initially connecting to the host or during other connections when timeout is not otherwise specified.

Samples

ICF Remote Connector Server Host Example
<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>
Was this page helpful?
YES NO
Thanks for your feedback