-1

我正在调用一个返回 xml 数据的 web 服务。现在当我收到 xml 数据时,它都被扭曲了。“<”、“>”和“'”等所有转义字符都转换为 html 格式

即≶ > 和“。

所以现在,解析器无法识别标签。

这是我对网络服务的回应

<?xml version="1.0" encoding="ISO-8859-1"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"      xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:GetCustomerInfoResponse xmlns:ns1="http://qa2.alliancetek.com/phpwebservice">
<return xsi:type="xsd:string">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;customer&gt;&lt;id&gt;1&lt;/id&gt;&lt;customername&gt;Hitesh&lt;/customername&gt;&lt;phonenumber&gt;98989898&lt;/phonenumber&gt;&lt;/customer&gt;
</return>
</ns1:GetCustomerInfoResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

返回标签之间的内容是xml数据。当我将 xml 数据复制到 NSMutableString 变量中并执行替换字符操作时,它也没有改变。

4

1 回答 1

0

请替换出现的≶ &tg; 和 " 带有一个空格。

于 2011-02-22T05:46:57.647 回答