Home arrow Support arrow FAQs arrow EzeScan arrow 48. How do I configure EzeScan PRO+KFI to import .XST files produced by a Fuji Xerox photocopier?
48. How do I configure EzeScan PRO+KFI to import .XST files produced by a Fuji Xerox photocopier?

XST Instructions:

  • Admin Jobs (F6) -> Import Tab -> Import Existing Index File - set this to XST
  • Admin KFI (F7) -> Indexes Tab -> Select "Rules" for an Index -> Rules Form -> Value Tab -> Derive value frame -> Entry in text file -> (See below)

As we convert the XST file to an XML format for processing the "Entry in text file" value is an XML xpath query

For example in the XST file we may have:

[service xrx_svc_general]
{
string JobTemplateName = "ABC";
enum_DCS DcsDefinitionUsed = FX_APEOSPORT_C5540/C6550/C7550;
string JobTemplateDescription = "";
enum_encoding JobTemplateCharacterEncoding = ASCII;
string JobTemplateLanguageVersion = "2.0";
boolean SuppressJobLog = FALSE;
string NetworkUsername = "/";
}
end

to extract JobTemplateName the "Entry in text file" value can be either

    //JobTemplateName

OR

    //xrx_svc_general/JobTemplateName

Most fields can be extracted using the simpler first option unless there are multiple fields in the XST file with the same name (i.e. MetaData fields).
For a MetaData field

[description xrx_dscrpt_metadata]
entry_1{
string MetaDataFieldName = "Title";
string MetaDataPrompt = "Title";
string MetaDataDefaultValue = "";
string MetaDataValue = "scan by User";
}
entry_2{
string MetaDataFieldName = "Summary";
string MetaDataPrompt = "Summary";
string MetaDataDefaultValue = "";
string MetaDataValue = "this is a summary";
}
entry_3{
string MetaDataFieldName = "Description"
string MetaDataPrompt = "Description";
string MetaDataDefaultValue = "";
string MetaDataValue = "and the description";
}
end

to extract MetaDataValue for entry_2 the "Entry in text file" this value could be

    //entry_2/MetaDataValue

OR

    //xrx_dscrpt_metadata/entry_2/MetaDataValue