GetAllStates function
This function returns the status of Kofax Import Connector feature licenses and all connections.

The FeatureLicenseState values are defined in the table below.
Value |
Description |
---|---|
0 |
License OK |
1 |
License invalid. |
65536 |
Evaluation license found. |
The ConnectionState values are defined in the table.
Value |
Description |
---|---|
-1 |
Connection is active but not connected. |
0 |
Connection is inactive. |
1 |
Connection is active and connected. |
Example:
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<GetAllStatesResponse xmlns="http://www.kofax.com/2011/KIC-ElectronicDocuments">
<FeatureLicenseState>1</FeatureLicenseState>
<Connection>
<ConnectionName>Connection2</ConnectionName>
<ConnectionState>1</ConnectionState>
</Connection>
<Connection>
<ConnectionName>Connection3</ConnectionName>
<ConnectionState>0</ConnectionState>
</Connection>
</GetAllStatesResponse>
</s:Body>