Send Xml Files In Android With Http Post
I want to know if anyone knows a good tutorial. I have in my app 2 edittexts with username and password. I want to write these in an xml file and send it to my server. I was thinki
Solution 1:
Your question has been asked before: Android, sending XML via HTTP POST (SOAP) A simple google search of: android http post xml returned that result, of course SO has a search feature too ;)
Solution 2:
What you want to look at is the HttpClient
class. You'll probably want to do something like this:
HttpClienthttpClient=newDefaultHttpClient();
HttpPosthttpPost=newHttpPost("http://www.example.com/myscript");
HttpResponseresponse= httpClient .execute(httpPost );
And add your data using httppost.setEntity
. There are plenty of code examples out there for this type of thing. A simple Google search should yield tons of information for you.
Post a Comment for "Send Xml Files In Android With Http Post"