I want to transfer web login session to my java desktop application ,so that once again I don't want to login in my desktop application.
Once the user logs into my web application, I set some cookies on the user system, once he starts my standalone application I would like to use the credentials stored here to log my user into the application without asking to re-login.
My questions: - Can I access the cookies to read Auth token and other params? Is this the proper solution? - To achieve the above requirement , is there any proper solution.
Cookie seemed like a solution for me here. But in essence I want a seamless integration between the web application and the standalone application. What kind of solutions are available for this?