Hi!
My problem is that I have to call a webservice that needs to process some XML data. Before wM integration we used to call this webservice using CDATA in xml, something like this:
<sendXmlMsgRequest>
<msgData><![CDATA[<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<request messageID="6d8259f2-f2be-11dd-b017-9b4c6a8d7079" messageDateTime="2009-02-04T14:19:17.330" requestersId="testId">
<senderInsCo>01</senderInsCo>
<targetInsCo>01</targetInsCo>
<reRequest>false</reRequest>
<policyNo>1327</policyNo>
<reasonOfRequest>01</reasonOfRequest>
<licensePlate>awer46</licensePlate>
</request>]]></msgData>
</sendXmlMsgRequest>
The problem is that I can’t make wM call the webservice not escpaing the reserved XML character in the tag, and the message being sent looks like this:
<schema:sendXmlMsgRequest >
<schema:msgData><![CDATA[<?xml version="1.0"?>
<request messageID="da42515a-f770-11dd-8771-f182a6d5e6d6" messageDateTime="2009-02-10T13:46:36.116" highPriorityRequest="true">
<senderInsCo>03</senderInsCo>
<targetInsCo>03</targetInsCo>
<reRequest>false</reRequest>
<policyNo>1238</policyNo>
<reasonOfRequest>01</reasonOfRequest>
<licensePlate>EOP100</licensePlate>
</request>]]></schema:msgData>
</schema:sendXmlMsgRequest>
Is there some way to avoid escaping the XML characters?
thanks,
Pete