I have xml webservice response with CDATA in the response :
<![CDATA[
<?xml version="1.0" encoding="utf-8"?>
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ReturnCode>0</ReturnCode>
<ReturnDescription>SUCCESS</ReturnDescription>
</Response>]]>
I need to remove what is between the opening <!CDATA[
and closing ]]>
and keep the xml only.
I have searched for a solution on many forums but i can't find useful answer .