Can i store a cookie returned by a REST call to the clients browser. The rest call is made from a jsp page. Ideas or solutions will be helpful. What i need is from abc.com i am calling a webservice of xyz.com which requires authentication. On sucessful authentication xyz.com is returning a cookie and i want to store it in the browser so that if open xyz.com in another tab it should not ask for authentication.
Thanks,
Rahul
You can set browser cookie from java servlets - i will suggest make authentication server side, get content and set cookie. (for more detail u can look java doc or tutorial of http response/request)
OR