[android-beginners] Re: Submitting user login details to a web site

2008-07-12 Thread sacoskun
Hello Anur, If the site provides SOAP or Http resource(e.g.REST), you can pass the data(username,password) and get the return(validation) according to the web service method definitions. For more information on accessing to a web service from Android take a look at the thread below. (http://grou

[android-beginners] Re: Submitting user login details to a web site

2008-07-15 Thread Fräntz Miccoli
Here one of my codes : PostMethod post = new PostMethod(ServerConnection.serverURL+ "mySkreen/Login"); //PostMethod post = new PostMethod("http://www.google.fr";); post.addParameter("user", login);