[android-developers] Re: SaxParser with POST to URL

2009-01-23 Thread Greg Krimer
Hi Mark, if you are asking how to make a POST request then I would have a look at the the java.net.URL and java.net.HttpURLConnection classes. Here is the gist of it: URL u = new URL("http://your.remote.api...";); HttpURLConnection http = (HttpURLConnection) u.openConnection();// create an H

[android-developers] Re: SaxParser with POST to URL

2009-01-23 Thread Greg Krimer
Hi Mark, if you are asking how to make a POST request then I would have a look at the the java.net.URL and java.net.HttpURLConnection classes. Here is the gist of it: URL u = new URL("http://your.remote.api...";); HttpURLConnection http = (HttpURLConnection) u.openConnection();// create an H