Hi,
We have webMethods Integration Server v6.0.1 installed on a Sun Sparc machine.
Need to implement webservices using document/literal format.
From the wsdl I have created the web services connector.
When I invoke the web service connector, I get a SOAP-FAULT.
faultcode is SOAP-ENV:Client
faultstring [ISS.0088.9119] SOAP Processor did NOT return a valid SOAP Response
faultactor http://hostname:port/soap/default
On the service provider side when we run the same service from pipeline, SoapResponseData which is being created looks to be fine. Here it is:
<?xml version=“1.0” encoding=“UTF-8”?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV=“http://schemas.xmlsoap.org/soap/envelope/” xmlns:SOAP-ENC=“http://schemas.xmlsoap.org/soap/encoding/” xmlns:xsd=“http://www.w3.org/1999/XMLSchema” xmlns:xsi=“http://www.w3.org/1999/XMLSchema-instance” SOAP-ENV:encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/”>
<SOAP-ENV:Body>
<tns:dataConfirmation xmlns:tns=“http://www.bosch.com/Concession/”>
<tns:result>
<tns:supplierDescription>supplier1</tns:supplierDescription>
<tns:customerDescription>customer1</tns:customerDescription>
<tns:materials>
<tns:materialNr>321654987</tns:materialNr>
</tns:materials>
</tns:result>
</tns:dataConfirmation></SOAP-ENV:Body>
</SOAP-ENV:Envelope>
I have put logs in the webservice provider flow and it gets called but the SoapResponseData is not being sent to the webservice client or the client is not recognising the soap response.
I have looked in the Soap Developer guide and it was not very useful.
Could any of you please guide what may be wrong.
Thanks very much for your help.
- Anil.