cancel
Showing results for 
Search instead for 
Did you mean: 

Access to SOAP header in synchronous SOAP response?

Former Member
0 Kudos

Hi,

Scenario: message received via synchronous SOAP adapter call.

In the response which is sent back to the sender i can influence the SOAP body but not the SOAP header.

Is there a possibility to manipulate/add/map the SOAP header in synchronous response messages?

Thank you very much in advance for your hints.

Greetings

Michael

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Not sure you can ... What would you like to do exactly ? You can add headers to the msg, maybe it could help you ?

Chris

Former Member
0 Kudos

Hi Christophe,

per default PI is sending back something like this

-


<SOAP:Envelope xmlns:SOAP='http://schemas.xmlsoap.org/soap/envelope/'>

<SOAP:Header/>

<SOAP:Body>

...

Payload, which can be accessed via mapping

...

</SOAP:Body>

</SOAP:Envelope>

-


but required are some fields in the Header tag like:

-


<SOAP:Envelope xmlns:SOAP='http://schemas.xmlsoap.org/soap/envelope/'>

<SOAP:Header>

<SOAP:ABC>date</SOAP:ABC>

</SOAP:Header>

<SOAP:Body>

...

Payload, which can be accessed via mapping

...

</SOAP:Body>

</SOAP:Envelope>

-


Greetings

Michael