Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note
titleVersion warning

Content of this page applies to Apache Syncope >= 1.1.X

Table of Contents
styledecimal

Syncope can be configured for using either local and remote connector bundles:

...

The format is quite straightforward:

Code Block

connid.locations=location1,\
location2,\
...
locationN

where each location is the string representation of an URI of the form

Code Block

file:/path/to/directory/

for local locations or

Code Block

connid://key@host:port

for remote non-SSL connector servers or

Code Block

connids://key@host:port[?trustAllcerts=true]

for remote SSL connector servers, with optional flag to disable certificate check. Refer to Connid for how to work with Java or .NET connector servers.

Note
titleAbout key

Key value must be reported as non-encrypted cleartext.
Any special character in the key value (e.g. any character which needs URL encoding) must be reported using its encoded representation: for example '@` becomes '%40' .

Some examples

Single local location

Code Block

connid.locations=file:/opt/syncope/bundles/

Single remote location

Code Block

connid.locations=connid://sampleKey@windows2008:4554

Multiple locations

Code Block

connid.locations=file:/opt/syncope/bundles/,\
file:/var/tmp/bundles/,\
connid://sampleKey@windows2008:4554,\
connids://anotherKey@windows2008:4559,\
connids://aThirdKey@linuxbox:9001?trustAllCerts=true