Forum Discussion
M_McDonald
17 years agoSuper Contributor
Actually I just noticed that the CDATA wrappers are being stripped out from the Raw response.
Raw:
XML tab (and responseAsXml):
Is there any way to retain the CDATA wrappers?
Raw:
HTTP/1.1 200 OK
Content-Type: text/xml; charset=iso-8859-1
Transfer-Encoding: chunked
Server: Jetty(6.1.x)
<resultset>
<row rowid='1'>
<column name='storenum'><![CDATA[STORE1]]></column>
<column name='dob'><![CDATA[01/01/1950]]></column>
<column name='pmisc1'><![CDATA[]]></column>
XML tab (and responseAsXml):
<resultset>
<row rowid="1">
<column name="storenum">STORE1</column>
<column name="dob">01/01/1950</column>
<column name="pmisc1"/>
Is there any way to retain the CDATA wrappers?