not sure if this will help ... we have a WorkCenter 7655 .... here is my XST template to deliver scans via FTP to my desktop PC
... the line
string RepositoryName = "11.22.33.44";
is the IP address of my PC on the office LAN ...
I still have to select "verne" from the template list on the touch screen ...
Verne
[service xrx_svc_general]
{
* enum_DCS DCSDefinitionUsed = DCS_GENERIC;
string JobTemplateLanguageVersion = "2.03.08";
enum_encoding JobTemplateCharacterEncoding = ASCII;
enum_confmethod ConfirmationMethod = PRINT;
enum_confstage ConfirmationStage = AFTER_JOB_COMPLETE;
boolean SuppressJobLog = FALSE;
string JobTemplateName = "verne-pc";
}
end
[service xrx_svc_scan]
{
* boolean ServiceEnabled = TRUE;
}
end
[service xrx_svc_file]
file_1{
* boolean ServiceEnabled = TRUE;
ref_invocation OutputDocument = XRX_DOCUMENT:doc_1;
string RepositoryName = "11.22.33.44";
string DocumentPath = "/verne";
string UserNetworkFilingLoginName = "scan";
string UserNetworkFilingLoginID = "secret-pc-password-here";
string RepositoryVolume = "";
string NDSNameContext = "";
string NDSTree = "";
enum_namespace FilingNameSpace = UNIX;
enum_filingprotocol FilingProtocol = FTP;
enum_filingpolicy DocumentFilingPolicy = NEW_AUTO_GENERATE;
}
end
[doc_object xrx_document]
doc_1{
* enum_docformat DocumentFormat = XSM_TIFF_V6;
string DocumentObjectName = "DOC";
}
end
Hi ingram59,
Thank you for using the Xerox forum.
Evidently nobody has responded in a timely manner and I am not familiar with editing xst files.
I would suggest that you review the following Administration guide and User guide for changing the default and overriding default locations.
This machine has live customer support so If that does not resolve your issue you may consider contacting our specific product support experts at the following link: Fast Track to the Expert
I have a copy of the FaxWithAccount.XST file that we use on our Xerox printers. I need to know how to change the template so that it DOES NOT use the DEFAULT repository as configured on our Xerox Color 550 printer. I need to have this XST file override the default location and have it point to a different folder location that I specify. I don't know how to code this and need assistance. I couldn't see how to attach the file, so I've pasted the contents of the XST file in to this email string. I appreciate any assistance that I can get on this issue.
[service xrx_svc_general]
{
enum_encoding JobTemplateCharacterEncoding = ASCII;
string JobTemplateLanguageVersion = "1.3.2a";
string JobTemplateName = "FaxWithAccount.xst";
string JobTemplateDescription = "RightFax Fax with User Account";
string JobTemplateCreator = "CAPTARIS";
boolean SuppressJobLog = FALSE;
enum_confmethod ConfirmationMethod = PRINT;
enum_DCS DCSDefinitionUsed = DCS_GENERIC;
}
end
[service xrx_svc_scan]
{
enum_imagemode DocumentImageMode = MIXED;
enum_autoexposure AutoExposure = LEAD_EDGE;
}
end
[doc_object xrx_document]
doc_1{
string DocumentObjectName = "DOC";
enum_resolution Resolution = RES_200X200;
ref_invocation UserData = xrx_dscrpt_metadata:entry_1,xrx_dscrpt_metadata:entry_2,xrx_dscrpt_metadata:entry_3,xrx_dscrpt_metadata:entry_4,xrx_dscrpt_metadata:entry_5;
enum_docformat DocumentFormat = XSM_TIFF_V6;
}
end
[service xrx_svc_file]
{
enum_filingpolicy DocumentFilingPolicy = NEW_AUTO_GENERATE;
ref_invocation OutputDocument = xrx_document:doc_1;
}
end
[description xrx_dscrpt_metadata]
entry_1{
string MetaDataPrompt = "User ID:";
string MetaDataFieldName = "UserID";
string MetaDataType = "string";
string MetaDataValue = "";
string MetaDataDefaultValue = "";
}
entry_2{
string MetaDataPrompt = "Fax Number:";
string MetaDataFieldName = "FaxNumber";
string MetaDataType = "string";
string MetaDataValue = "";
string MetaDataDefaultValue = "";
}
entry_3{
string MetaDataPrompt = "Billing Code 1:";
string MetaDataFieldName = "BillCode1";
string MetaDataType = "string";
string MetaDataValue = "";
string MetaDataDefaultValue = "";
}
entry_4{
string MetaDataPrompt = "Billing Code 2:";
string MetaDataFieldName = "BillCode2";
string MetaDataType = "string";
string MetaDataValue = "";
string MetaDataDefaultValue = "";
}
entry_5{
string MetaDataFieldName = "Type";
string MetaDataDefaultValue = "Fax";
string MetaDataType = "string";
string MetaDataPrompt = "";
string MetaDataValue = "Fax";
}
end