I am using wcf Restful web services that will be used by android application. These are secure services like only login user can hit the calls, so to acquire this I create a session when a user login and return this to user. Now problem is that how this token is passed to services so web services can verify the user session?
Share
I found the answer, when User get the session token it store on client side and in next request user will send it in request Header which will be extract and verified at server
before completing required request and if session authenticated request will be completed.