Hi Ravi
The SOAP envelope doesn't look right:
- there is no overall envelope
- there in no SOAP body - the data should be contained in the body instead of the SOAP header
Did you manually construct this envelope?
Here's a sample of a correct payload within a SOAP envelope
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:str="urn:test.com/Test"> <soapenv:Header/> <soapenv:Body> <str:MT_SingleFieldLines> <Lines> <Field>ABC</Field> </Lines> </str:MT_SingleFieldLines> </soapenv:Body></soapenv:Envelope>
Rgds
Eng Swee