High availability – Kofax Export Connector 1.0.0 for Pega Rules Process Commander User Manual

Page 16

Advertising
background image

Additional Information

16

Kofax Export Connector 1.0.0 for Pega Rules Process Commander Administrator's Guide

the specified .NET type, then that type's ToString method will be called
with the format
specifier defined. For DateTime types, if the ToUniversal attribute = 1,
then the
ToUniversalTime method is called first. If the property name does not match
any of the
values below, then the Kofax field data type is used.-->

<DataTypes>
<!--
Standard Numeric Format Strings http://msdn.microsoft.com/en-us/library/
dwhawy9k.aspx
Custom Numeric Format Strings http://msdn.microsoft.com/en-us/
library/0c899ak8.aspx
-->
<DataType PRPCName="_INT_" ManagedTypeName="System.Int32" Format="G"/>
<!--
Standard Date and Time Format Strings http://msdn.microsoft.com/en-us/
library/az4se3k1.aspx
Custom Date and Time Format Strings http://msdn.microsoft.com/en-us/
library/8kb3ddd4.aspx
-->
<DataType PRPCName="_DATETIME_" ManagedTypeName="System.DateTime"
Format="u" ToUniversal="1"/>
<DataType PRPCName="_DATE_" ManagedTypeName="System.DateTime" Format="D"
ToUniversal="1"/>
<DataType PRPCName="_TIME_" ManagedTypeName="System.DateTime" Format="T"
ToUniversal="1"/>

<!--
If the PRPC field name does not contain one of the listed substrings,
then the Kofax
field type is used. In that case the format can still be specified.
-->
<DataType KfxIndexFieldType="SQL_DATETIME"
ManagedTypeName="System.DateTime" Format="G" />
<DataType KfxIndexFieldType="SQL_DECIMAL"
ManagedTypeName="System.Decimal" Format="G" />
<DataType KfxIndexFieldType="SQL_NUMERIC"
ManagedTypeName="System.Decimal" Format="G" />
<DataType KfxIndexFieldType="SQL_DOUBLE" ManagedTypeName="System.Double"
Format="G" />
<DataType KfxIndexFieldType="SQL_REAL" ManagedTypeName="System.Double"
Format="G" />
<DataType KfxIndexFieldType="SQL_FLOAT" ManagedTypeName="System.Single"
Format="G" />
<DataType KfxIndexFieldType="SQL_SMALLINT" ManagedTypeName="System.Int16"
Format="G" />
<DataType KfxIndexFieldType="SQL_INTEGER" ManagedTypeName="System.Int32"
Format="G" />
</DataTypes>

High Availability

The timeout and retry values can also be configured to optimize behavior on your network.

These values are only applicable during export and not when setting up the export connector.

<Config>
<RequestTimeoutSeconds>5</RequestTimeoutSeconds>
<MaxRetries>0</MaxRetries>

Parameter

Description

Default Value

Advertising