I am creating one simple conference application (Java based) and using RESTFull Web Service to expose functionality.
I want to implement some authorization. Work Flow should be like:
1) Application received a xml request which is having username / password.
2) In response, Application should give some key ( for the authorization of the further request )
3)Now for every incoming request for this user, this key should be available in the xml request so that application can authorized the user.
Please suggest how should i implement this and what is the best approach.
I was searching for some Authorization framework and come across with OAuth. Please suggest.
Thanks in Advance...Looking for your feedback