从Android中的.net Web服务检索XmlDocument类对象

时间:2010-12-02 16:50:17

标签: android web-services ksoap

我必须从.net Web服务获取xml数据。 webservice返回XMLDocument对象。我无法使用开始标记等成功地将数据检索/解释为XML。它看起来像这样

MethodResponse {MethodResult = anyType {BUILDINGPERMITS = anyType {PERMITS = anyType {APNO = 1829; YCOORD = 36.09593993; XCOORD = -80.24505836; JOBADDRESS = 200 W SECOND ST WINSTON-SALEM 27101-; STATUS =关闭; }; ...

如果XML数据是作为字符串而不是XMLDocument发送的,我可以非常好地检索XML数据。 有没有办法从返回.net对象(如XMLDocument)的Web服务中获取XML数据,或者这是不实际的?

1 个答案:

答案 0 :(得分:1)

我认为你最好以字符串形式检索xml数据。有关处理xml数据的各种方法,请参阅working with xml in android