[android-developers] Re: Submit Android form data to the web via POST

2010-06-09 Thread theSmith
@ko5tik, I was simply referring to the libraries included with android, specifically the org.apache.http.* ones. -chris On Jun 9, 4:03 pm, ko5tik wrote: > You do not need additional libraries, as android already got > HttpClient > I do following: > -%<--- >  httpClie

[android-developers] Re: Submit Android form data to the web via POST

2010-06-09 Thread ko5tik
You do not need additional libraries, as android already got HttpClient I do following: -%<--- httpClient = new DefaultHttpClient(); HttpPost httpRequest = new HttpPost(PUSH_URL); List pairs = new ArrayList(); pairs.add(new BasicNameValuePair("name", entry.getName())

[android-developers] Re: Submit Android form data to the web via POST

2010-06-09 Thread theSmith
I saw your entry on stackoverflow too. http://stackoverflow.com/questions/245/submit-form-with-post-data-in-android-app I would suggest using the Apache libraries (all the http client, get/ post, response stuff) and parsing the data your self. If they just wanted a webview the user might as we