-2

数時間の調査の後、石鹸の応答を解析できません。WSDL2OBJCWSDLファイルSudZcの解析には使用していませんが、 SoapUIXML を返すものを使用しました。

それがどのように見えるかの例:

    <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"   xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility- 1.0.xsd">
     <s:Header>
     <o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis- open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
     <u:Timestamp u:Id="_0">
     <u:Created>2013-01-25T12:19:59.906Z</u:Created>
     <u:Expires>2013-01-25T12:24:59.906Z</u:Expires>
     </u:Timestamp>
     </o:Security>
     </s:Header>
     <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
     <getAllEntitiesResponse xmlns="http://tempuri.org/">
     <getAllEntitiesResult>
     <Entity Id="2" Name="red" Hexa="#CD0000" Alpha="1" LastUpdated="2012-06-27T10:36:33.39">
     <EntityKey>

     /* Some code */

     </EntityKey>
     </Entity>

私の質問は次のとおりです:「エンティティ」プロパティ(エンティティ id=2 name=red の行だけ...)を取得するために、これをどのように解析できますか?

前もって感謝します、

よろしく

4

1 に答える 1

1

NSXMLパーサーを使用してから、エンティティにNSCodingプロトコルを実装させます。Insider initWithCoderを使用すると、プロパティを取得してオブジェクトにデータを入力できます。

于 2013-01-25T16:10:03.763 に答える