IIB SOAP Input to MQ

458 views Asked by At

I need to transform a very simple soap message that contains CDATA into an MQ message and send it to a queue. I am sending the message correctly, but the HTTPInputHeader end up in the message queue along with the message payload. All I want in the message queue is that one CDATA section, not the headers. There should be a way to remove them in a mapping node. IIB10

2

There are 2 answers

0
DThompson55 On

The HTTPHeader Node allows you to remove the HTTPInputHeader

0
Sivaprasad On

Using ESQL the input data can be converted in to a json and store the json in the queue.

SET OutputRoot.JSON.Data = InputRoot.XMLNSC.(XMLNSC.Element)*[1];