Hello
I am using Android 1.5.
I am using database to save the user details.My requirement is like if two users want something to share between then the data in the database should be converted to XML file and sent to the server.
Is there any way that i can achieve this in android.
Is there anything like plist in iphone for android as well.
Please share your valuable suggestions.
Thanks in advance:)
If you want to send XML data to server you can convert it into XML string form and post it to server.
There are java codes available for posting data to server.
If you want to parse the returned XML, two types of parsing techniques are there,
This is how you can post XML string:
Hope that helps
Thanks