Hi together,
I try to establish a connection to a webservice over soap protocol.
The integration process: synchronous Abap Proxy <-> SAP PI (7.1) <-> Web Service.
In the inbound communication channel I have set parameter "do not use SOAP Envelope". The soap envelope is created by XSLT mapping.
Message content:
<?xml version="1.0" encoding="UTF-8" ?>
-<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:reg="http://regis_tr_xml_load" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
</ns1:send_xml>
</soapenv:Body>
</soapenv:Envelope>
As response I get following error message:
<?xml version="1.0" encoding="UTF-8" ?>
-<soapenv: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">
</ns1:send_xmlResponse>
</soapenv:Body>
</soapenv:Envelope>
If i try to send the message with the same content over SOUP UI works fine.
I have tried different settings but have no success.
Thanks,
Vadim