I'm new in Android, but i worked with XML parsers in android to parse RSS in my app. Now I want to send and receive new app-data to/from my server.
I developed server side of my web API, tested it and so far it is working. So when I call a url like this
http://URL/api/getQuery/value1/value2
I get this XML (and JSON as needed).
<ArrayOfstring>
<string>4.5</string>
<string>Glu Mobile</string>
<string>4.2.0</string>
<string>1392/07/18</string>
<string>500</string>
<string>112MB</string>
<string>free</string>
<string>creator</string>
<string>describtion</string>
<string>similarapp</string>
</ArrayOfstring>
Now I want to call that url and receive XML or JSON string and then parsing it into an array or a list. How can I do this?