Hi Group,
I am using soap received adapter to send request to third party system, I copied WSDL from URL and mapped my source data to WSDL , but I am getting soap response error, when I compated soapUI and Payload there are some difference I found and I suspect because of this my interface failing, can any body suggest how I can fix:
SOAPUI Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:urn:emp-org:xi">
<soapenv:Header/>
<soapenv:Body>
<urn:emp>
<urn:AddressLine1>?</urn:AddressLine1>
<urn:AddressLine2>?</urn:AddressLine2>
<urn:Town>?</urn:Town>
</urn:emp>
</soapenv:Body>
</soapenv:Envelope>
PO Payload
<?xml version="1.0" encoding="UTF-8" ?>
<ns0:emp xmlns:ns0="urn:emp-org:xi">
<ns0:AddressLine1> STREET1</ns0:AddressLine1>
<ns0:AddressLine2>12</ns0:AddressLine2>
<ns0:Town>BRMK</ns0:Town>
</ns0:emp>