开发者

Retrieving XmlDocument class object from .net web service in Android

开发者 https://www.devze.com 2023-01-28 09:08 出处:网络
I have to get xml data from a .net web service. The webservice returns an XMLDocument object. I have been unable to successfully retrive/interpret the data as XML with start tags etc. It looks like th

I have to get xml data from a .net web service. The webservice returns an XMLDocument object. I have been unable to successfully retrive/interpret the data as XML with start tags etc. It looks like this

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

I can succssfully retrieve XML data if it is sent as a string rather than XMLDocument. Is there a way to get XML data f开发者_开发百科rom a webservice that returns a .net object like XMLDocument or is that just not practical?


I think you will be better off retrieving the xml data as a String. See working with xml in android for a variety of ways of dealing with xml data.

0

精彩评论

暂无评论...
验证码 换一张
取 消