I have a web application which requires username and password authentication
to enter.
What I am doing is, authenticate a user from a stand alone Java app
, which would do so by making Http
request to the server using username
and password
. Then I would retrieve JSESSIONID
cookie from response of server.
Now what I want is to use this JSESSIONID
to continue session on browser i.e. to let user
navigate pages of my web app which would be opened by my stand alone java app which I use for authentication.
Is this possible? Or is there any other way to do so.