When I am running the below xml file through the SOAPUI2.5.1, I am getting the error response as shown.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:eagldev:eagldevWS">
<soapenv:Header/>
<soapenv:Body>
<urn:gzeaweb>
<urn:Envelope>
<!--Zero or more repetitions:-->
<urn:EnvelopeRow>
<urn:MessageID>423452356</urn:MessageID>
<urn:ServiceName>ReturnsUItoEagle</urn:ServiceName>
<urn:TimeStamp>2009-05-14T10:38:19</urn:TimeStamp>
<urn:FromSystem>ReturnsUI</urn:FromSystem>
<urn:ToSystem>ProgressExplorer</urn:ToSystem>
</urn:EnvelopeRow>
</urn:Envelope>
<urn:SerialNumberArray>
<!--Zero or more repetitions:-->
<urn:SerialNumberArrayRow>
<urn:serialnumber>urn:epc:id:sgtin:0358468.046631.760014943783</urn:serialnumber>
</urn:SerialNumberArrayRow>
</urn:SerialNumberArray>
</urn:gzeaweb>
</soapenv:Body>
</soapenv:Envelope>
The response is as below
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
<SOAP-ENV:Fault>
<faultcode>SOAP-ENV:Server</faultcode>
<faultstring>An error was detected while executing the Web Service request. (10893)</faultstring>
<detail>
<ns1:FaultDetail xmlns:ns1="urn:soap-fault:details">
<errorMessage>An internal Web Service error occurred in the Web Services Adapter. (10902)</errorMessage>
<requestID>6a43e7bce22aa675:805267a:1232e8874f2:-7ffe#8b</requestID>
</ns1:FaultDetail>
</detail>
</SOAP-ENV:Fault>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Not sure what this error message and how to debug. If we just send in a blank response though it appears to be working. Please suggest on what could have caused this error to occur.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:eagldev:eagldevWS">
<soapenv:Header/>
<soapenv:Body>
<urn:gzeaweb>
<urn:Envelope>
<!--Zero or more repetitions:-->
<urn:EnvelopeRow>
<urn:MessageID>423452356</urn:MessageID>
<urn:ServiceName>ReturnsUItoEagle</urn:ServiceName>
<urn:TimeStamp>2009-05-14T10:38:19</urn:TimeStamp>
<urn:FromSystem>ReturnsUI</urn:FromSystem>
<urn:ToSystem>ProgressExplorer</urn:ToSystem>
</urn:EnvelopeRow>
</urn:Envelope>
<urn:SerialNumberArray>
<!--Zero or more repetitions:-->
<urn:SerialNumberArrayRow>
<urn:serialnumber>urn:epc:id:sgtin:0358468.046631.760014943783</urn:serialnumber>
</urn:SerialNumberArrayRow>
</urn:SerialNumberArray>
</urn:gzeaweb>
</soapenv:Body>
</soapenv:Envelope>
The response is as below
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
<SOAP-ENV:Fault>
<faultcode>SOAP-ENV:Server</faultcode>
<faultstring>An error was detected while executing the Web Service request. (10893)</faultstring>
<detail>
<ns1:FaultDetail xmlns:ns1="urn:soap-fault:details">
<errorMessage>An internal Web Service error occurred in the Web Services Adapter. (10902)</errorMessage>
<requestID>6a43e7bce22aa675:805267a:1232e8874f2:-7ffe#8b</requestID>
</ns1:FaultDetail>
</detail>
</SOAP-ENV:Fault>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Not sure what this error message and how to debug. If we just send in a blank response though it appears to be working. Please suggest on what could have caused this error to occur.