Hello,
I have developed a C# application that checks hot folders for files, uploads them to uProduce and submits the job.
I've been asked if I can add functionality to allow an ADOR to be used as the output filename.
I've looked in the uProduce API (Version 7.2.1 Build 8061) help file, and it has this:
// In order to change the output file name, add the following code before the SubmitJob:
XMPieAPIWS.Parameter param = new XMPieAPIWS.Parameter();
param.m_Name = "FILE_NAME_ADOR";
param.m_Value = "[AdorName]";
jobTicketWS.SetOutputParameter(uName, password, jobTicketID, param);
Can someone explain what needs to go into 'param.m_Name' and 'param.m_Value' as it's not very clear? As in the attachment, I would have assumed that I'd only need the name of the ADOR and not the value?
Thanks,
James