125 lines
3.7 KiB
XML
125 lines
3.7 KiB
XML
<?xml version="1.0" encoding="UTF-16" ?>
|
|
<!-- Configuration File (1.1.0.0). -->
|
|
<!-- This file contains the XML strcuture which should be passed
|
|
to the IFSHelperInitialize API to initialize the Library -->
|
|
|
|
<fs-helper-ps-config>
|
|
<ps-details>
|
|
<!-- URLs of the Policy Server. -->
|
|
<urls>
|
|
<!--
|
|
URL of the Policy Server. Multiple such tags can be present.
|
|
It is recommended to put reachable URL as first URL and then
|
|
backup URL.
|
|
-->
|
|
<url>
|
|
<!--
|
|
Parts of URL.
|
|
For example, if URL is https://demo.seclore.com:9443/PolicyServer,
|
|
server: demo.seclore.com
|
|
port: 9443
|
|
app-name: PolicyServer.
|
|
|
|
Value of 'port' is mandatory.
|
|
-->
|
|
<server></server>
|
|
<port></port>
|
|
<app-name></app-name>
|
|
</url>
|
|
</urls>
|
|
</ps-details>
|
|
|
|
<!-- Login details for this instance -->
|
|
<login-details>
|
|
<!--
|
|
Login user type.
|
|
1: Cabinet User
|
|
2: PS End-User
|
|
-->
|
|
<user-type>2</user-type>
|
|
|
|
<!-- Structure for user type PS End User(2) -->
|
|
<!--
|
|
End User details. This details are used to authenticate with
|
|
Policy Server.
|
|
-->
|
|
<end-user>
|
|
<!--
|
|
Repository details.
|
|
-->
|
|
<repository>
|
|
<!--
|
|
Repository code
|
|
-->
|
|
<rep-code></rep-code>
|
|
</repository>
|
|
<!--
|
|
Authentication details.
|
|
-->
|
|
<auth-details>
|
|
<!-- For Active Directory authentication, following is the sample XML of params.-->
|
|
<params>
|
|
<param>
|
|
<name>login-id</name>
|
|
<value></value>
|
|
</param>
|
|
<param>
|
|
<name>password</name>
|
|
<value></value>
|
|
</param>
|
|
<param>
|
|
<name>domain</name>
|
|
<value></value>
|
|
</param>
|
|
</params>
|
|
|
|
</auth-details>
|
|
</end-user>
|
|
|
|
</login-details>
|
|
|
|
<!-- This tag defines whether inline attachment should be embedded in unprotected mail body or should be provided separately
|
|
true : Inline attachments will get embedded in mail body.
|
|
false : Inline attachments will be provided separately and not as mail body content.
|
|
-->
|
|
<include-inline-attachment-in-mail-body>false</include-inline-attachment-in-mail-body>
|
|
|
|
<!--
|
|
The Locale of FSHelper.
|
|
Locale String Format : <language code>[_<country code>[_<variant code>]]
|
|
-->
|
|
<locale>en</locale>
|
|
|
|
<!--
|
|
Policy Server session pool configuration.
|
|
-->
|
|
<session-pool>
|
|
<!--
|
|
Max. number of connection with Policy Server. This value is based on
|
|
(equal to) active concurrent users of Integrating Application deployment.
|
|
-->
|
|
<max-size>50</max-size>
|
|
<!--
|
|
Policy Server session timeout in seconds. This is typically 15 minutes (900 seconds).
|
|
for Policy Server. Value of this tag can be found in configuration file
|
|
of Web Application Server (web.xml for Tomcat).
|
|
-->
|
|
<default-session-timeout>900</default-session-timeout>
|
|
</session-pool>
|
|
|
|
<!--
|
|
Details of proxy server, if required to connect to Policy Server.
|
|
If not required, remove the following tag itself. It is optional.
|
|
-->
|
|
<proxy-details>
|
|
<server></server>
|
|
<port></port>
|
|
<user></user>
|
|
<password></password>
|
|
<!--
|
|
Semicolon (;) separated list of URL patterns, just like IE bypass
|
|
list in Internet Explorer.
|
|
-->
|
|
<bypass-list></bypass-list>
|
|
</proxy-details>
|
|
</fs-helper-ps-config> |