Click here to Skip to main content
15,897,181 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am new to webservices, i got a requirement like i need to get username and password from mobile application and by decrepting the password and comparing that password in sql, i need to say whether the user details are correct or not, if the credentials are correct i need to send yes to mobile application so that it can allow user to login. can anybody suggest me how to do that.






Thanks in advance
Divya
Posted
Updated 28-Nov-15 17:11pm
v2
Comments
ZurdoDev 28-Nov-15 23:17pm    
That's a lot of requirements. What specific question do you have?
Member 12078709 28-Nov-15 23:21pm    
i want to get username and password from mobile application through webservice

Quote:
i want to get username and password from mobile application through webservice
Write a Service with POST enabled method, which would take username and password. Then connect with SQL using ADO.NET objects and match those details with user table by a query.

If matched, return true, else false.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900