Hi,
i am building a mobile application, in which the users needs first to login, and then can perform several operations against dedicated web services.
we hold an offline table in Sql Mobile with the users that can login into the application.
now, considering that the user has successfully logged in (checked againsted the offline table) - how do i check in the web service that the requester of the method is a legitimate user.
should i send out the user+password on each call to the webservice
what is the best practice to work with web services , where i want only authenticated users to use
I read a while ago, that i can login once (using a login method in the webservice), get a token and use it is the next calls. This is not a good situation for me, as calls to the web service can be queued while the user is offline, and the token might expire.
any ideas are appriciated.

Application login
dustinto
fawltster
this is obvious.
but what happen for the next calls to the web services calls for fetching and updating data.
should i submit the user+pass again for each call, or maybe there is another solution
davros51