我正在使用 SOAP Web 服务,如果 Web 服务返回,我可以在其中读取字符串响应。但是当 Web 服务返回一个字符串和一个 XML 时,我不知道如何访问这个 XML 响应。例如。
HTTP/1.1 200 OK 内容类型:text/xml;charset=utf-8 内容长度:长度
`
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetCountriesResponse xmlns="http://www.myurl.com/">
<GetCountriesResult>
<code>string</code>
<profile>xmlxml</profile>
</GetCountriesResult>
</GetCountriesResponse>
</soap:Body>
</soap:Envelope>`
在其中我不知道如何从 XML 访问这些代码和配置文件标记的响应。那你能建议怎么做吗?