Hi using the soapmessage i'm framing a request xml and i'm sending to the external system .On the response i'm getting some errors like <faultString>Error queueing request JobSubmitRequest</faultString>.I checked the ouput xml with with sample request xml seems to be correct but still i'm facing this error. As i'm new to this technology can anyone guide me on this solutions
This is the Request XML which i am sending to external system
Request XML:
<hr />
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header>
<xoa:Request SOAP-ENV:actor="" xmlns:xoa="http://xoa.xpedite.com/2004/11/xoa">
<xoa:ReceiverKey>
https://xoatweb1.xpedite.com/soap/sync</xoa:ReceiverKey>
<xoa:Authentication>
<xoa:XDDSAuth>
<xoa:RequesterID>T2/CVS.COM</xoa:RequesterID>
<xoa:Password>1234</xoa:Password>
</xoa:XDDSAuth>
</xoa:Authentication>
</xoa:Request>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<xoa:JobSubmitRequest xmlns:xoa="http://xoa.xpedite.com/2004/11/xoa">
<xoa:SubmitId>refillreq</xoa:SubmitId>
<xoa:DocumentSet>
<xoa:Document ref="refillreqcsv">
<xoa:DocType>text</xoa:DocType>
<xoa:Filename>C:/Test/231.csv</xoa:Filename>
<xoa:DocData format="base64">
UkVGLElOU18xLElOU18yLElOU18zLElOU180LElOU181LElOU182LElOU183LElOU184LElOU185DQo4MDAwNTAsMjIyMjIyLCJudWxsIix0cnVlLDQwMTc3MDQzMDksdHJ1ZSxUaGFuayB5b3UsIENWUy5jb20gVGVhbSxUaGUgZm9sbG93aW5nIHJlZmlsbCByZXF1ZXN0IGhhcyBiZWVuIHN1Ym1pdHRlZCB0aHJvdWdoIENWUy5jb206LEFDVElPTjpQbGVhc2UgcmVmaWxsIHRoZSBwcmVzY3JpcHRpb25hcyByZXF1ZXN0ZWQgYnkgdGhlIHBhdGllbnQu
</xoa:DocData>
</xoa:Document>
</xoa:DocumentSet>
<xoa:Message>
<xoa:MessageId>2093118:800544</xoa:MessageId>
<xoa:JobOptions>
<xoa:FaxOptions>
<xoa:BannerFX>
<xoa:BannerFxName>refillreq</xoa:BannerFxName>
<xoa:BannerFxPlacement>insideor</xoa:BannerFxPlacement>
<xoa:BannerFxOnCover>yes</xoa:BannerFxOnCover>
</xoa:BannerFX>
</xoa:FaxOptions>
</xoa:JobOptions>
<xoa:Destinations>
<xoa:Table>
<xoa:DocRef>refillreqcsv</xoa:DocRef>
</xoa:Table>
</xoa:Destinations>
<xoa:Reports>
<xoa:DeliveryReport>
<xoa:DeliveryReportType>detail</xoa:DeliveryReportType>
</xoa:DeliveryReport>
</xoa:Reports>
<xoa:Contents>
<xoa:Part>
<xoa:Document>
<xoa:DocType>text</xoa:DocType>
<xoa:Filename>C:/Test/EMPTY_DOC.txt</xoa:Filename>
<xoa:DocData format="base64">
</xoa:DocData>
</xoa:Document>
</xoa:Part>
</xoa:Contents>
</xoa:Message>
</xoa:JobSubmitRequest>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
This is the response which i am getting back from the external system
Response xml:
<hr />
This is the error i ama getting
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SOAP-ENV:Body>
<soapenv:Fault xmlns="">
<faultcode>soapenv:Server</faultcode>
<faultstring>Error queueing request JobSubmitRequest
</faultstring>
<detail>
<detaildata>Queue queue/PC.jobSubmit</detaildata>
</detail>
</soapenv:Fault>
</SOAP-ENV:Body></SOAP-ENV:Envelope>