Ateist
Ateist

Reputation: 156

Parsing ksoap2 response into array of int

I get a response from the web service:

GetMonthsResult=anyType{int=1; int=2; int=3; int=4; int=5; int=6; int=7; int=8; int=9; int=10; int=11; int=12; }; 

How can I parse it into an array of int?

Upvotes: 0

Views: 133

Answers (1)

constantlearner
constantlearner

Reputation: 5247

Here is a tutorial on how to work with array of complex objects with KSOAP. It will help you

Upvotes: 1

Related Questions