Hi
I am looking to connect to a series of web services with parameters in a <soap:Header> and <soap:Body>.
Everything I am posting is being generated in the <soap:Body>. How do I configure my Integration Map so certain Mappings go to the <soap:Header> and others to the <soap:Body>?
Example, the credentials are in the <soap:Header>;
<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <SecureHeader xmlns="http://www.master-auto-glass.co.uk/pdaservice.asmx"> <Login>string</Login> <Password>string</Password> <UserID>short</UserID> </SecureHeader> </soap:Header> <soap:Body> <StockQuery xmlns="http://www.master-auto-glass.co.uk/pdaservice.asmx"> <stockItm> <StockItem> <_magCode>string</_magCode>
But when I posting they are going to the <soap:Body>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SecureHeader xmlns="http://www.master-auto-glass.co.uk/pdaservice.asmx">
<Login>xxxx</Login>
<Password>xxxxxxxxx</Password>
How would I be able to sort that out?
Any help would be appreciated.
Ady