I am developing an android app where a user has to enter his login details for authentication…the app will then check username and password entered by user on server and will act accordingly..so how to pass these login details to server..and do I need to implement web service on server side or can use servlet?
Can anyone please tell me which Web Service should I use for the above purpose…also I need to send other data from my client app to server, process it on server and give back the reply to client app…also how to implement a web service? Are there any tools for it? Any tutorials would be of great help.
Thanks in advance…
well, to send data to the server you can use
HttpPostandHttpGetrequests.and as you need to get results from the server then, yes you’ll need a web service.