2

谁能帮我看看为什么 NSXMLParser 没有导致这些方法

parser:didStartElement:namespaceURI:qualifiedName:attributes:
parser:didEndElement:namespaceURI:qualifiedName:attributes:

触发以下数据的一部分:

<?xml version="1.0" encoding="ISO-8859-1"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" 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:NDFDgenResponse xmlns:ns1=""><dwmlOut xsi:type="xsd:string"><?xml version="1.0"?>
<dwml version="1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.nws.noaa.gov/forecasts/xml/DWMLgen/schema/DWML.xsd">

(身体除外)

</dwml>
</dwmlOut></ns1:NDFDgenResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>

我不是 XML 专家,但对我来说,这<dwml></dwml>部分看起来只是一个常规元素,就像它之前的部分一样被解析。

确实得到了两个解析器:parseErrorOccurred: 错误,#200 和 #201,但它们发生在元素解析期间 <SOAP-ENV:Body>,而不是<dwml>元素,所以我不确定它们是否相关。感谢你给与我的帮助。

更新:我的一个朋友离线告诉我上面的数据有几个错误。我不明白为什么 NOAA 会发送格式错误的 XML —— 解析它有什么秘密吗?

4

1 回答 1

0

这是一个 SOAP 网络服务,您可能想试试这个:http ://code.google.com/p/wsdl2objc/

于 2010-03-15T21:15:39.900 回答