How to parse a complex SOAP response in Android

前端 未结 4 697
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-07 03:00

Since two days I am trying to consume a WCF (.NET) Soap Service and serialize it\'s response without success. I am getting a correct response (I had to put it on pastebin: S

4条回答
  •  不思量自难忘°
    2021-01-07 03:48

    I have used DOM and SAX so far to parse XML documents. DOM had a few issues on Android and I had to handle some bugs in the API. SAX seems to be better (and leaner if you only read). I have not used ksoap, but did everything hand crafted. Though I am not sure where the problem with that .NET thing is, I wouldn't see an issue using SAX or DOM. Can you comment why you think SAX won't work because of namespaces? A.

提交回复
热议问题