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
精彩评论