I am using ksoap2 API to call .net webservices from Android.
I am getting the response in the following format :
{a=1;b=2;c=3}
I want the response in XML format:
<a>1</a>
<b>2</b>
<c>3</c>
How I will get that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In your webservice consumer method, you can use
after
code line. It gives you response in XML format.