Example: Compatibility with KCIC web services
The web service input of Kofax Import Connector does NOT provide a compatible web service interface, but it supports the use case to create a batch in Kofax Capture according to an XML document (such as according to ACEIDEF.dtd) and additional files (such as images). Kofax Import Connector supports this use case with its Import function.
<Import>
<StructuredXmlDocument>
<ContentType>text/xml</ContentType>
<Content>
<Structure>
<ImportSession>
<Batches>
<Batch name="batch_name">
<Pages>
<Page ImportFileName="page001.tif”/>
</Pages>
</Batch>
</Batches>
</ImportSession>
</Structure>
</Content>
</StructuredXmlDocument>
<Part>
<ContentType>image/tif</ContentType>
<Filename>page001.tif</Filename>
<Content>
<Binary>
<!-- base64-encoded content of page001.tif -->
</Binary>
</Content>
</Part>
</Import>
The first part contains a batch XML element according to ACEIDEF.dtd. The second part contains an image which is linked via name “page001.tif”.