i have a android application which needs username and password to login, i need to save the username and password in a remote server by entering the details in the register page with an alert box showing "Registerd successfully". when the user opens the app next time he will login . I want to use client/server mechanism, after I get the response I want to parse it either using sax parser or soap. I searched a lot through google but I didnt find correct example. As I am new to webservices I couldnt able to solve it, someone plz help me
EditText input1 = (EditText) findViewById(R.id.usertext);
EditText input2 = (EditText) findViewById(R.id.Passtext);
String username = input1.getText().toString();
String password = input2.getText().toString();
Thanks in advance.