开发者

How to read SoapObject came from service as a collection of list object to ArrayList<Person>?

开发者 https://www.devze.com 2023-03-25 18:45 出处:网络
I have a service and whenever I call that one I am getting SoapObject when convert it into string as:

I have a service and whenever I call that one I am getting SoapObject when convert it into string as:

Persons=anyType{firstname=raj; lastname=nag; age=25;};
Persons=anyType{firstname=baa; lastname=rta; age=26;};
Persons=anyType{firstname=har; lastname=kiu; age=27;};

so how can I convert above string to ArrayList<Person> objects collection?

Thank开发者_开发问答s, nag.


I manage to get through this thanks to SeeSharpWriter's tutorial at http://seesharpgears.blogspot.fr/2010/10/web-service-that-returns-array-of.html

0

精彩评论

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