aspose file tools
The moose likes Servlets and the fly likes Can not retrive value from cookie Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "Can not retrive value from cookie" Watch "Can not retrive value from cookie" New topic
Author

Can not retrive value from cookie

sudipto shekhar
Ranch Hand

Joined: Apr 02, 2008
Posts: 813

Hi, my first form of the application is


I retrive the value from the field and set it to a new cookie.


And then I disply the value after retriving it in FirstResult.java


But when for the first time the application is run, no value is displayed on the page.
And when I refresh or run the application again the get the previous value from the field.

Why is it so? I have tried all alternatives and have come to the conclusion that for the first time the value of the cookie is not set.
But to over come this confusing state I have used the FirstRequest.java controller servlet.But still I do not get a solution.
Please help.




[ September 23, 2008: Message edited by: Sudipto Shekhar ]

Regards, Sud.
SCJP 5 ScjpFAQ JLS
William Brogden
Author and all-around good cowpoke
Rancher

Joined: Mar 22, 2000
Posts: 12324
    
    1
Why do you expect the Cookie set in the response to turn up in the request to the forwarded destination?

Cookies will only turn up in requests after they have been set in the client browser - this requires that the browser actually get the response.

Bill


Java Resources at www.wbrogden.com
sudipto shekhar
Ranch Hand

Joined: Apr 02, 2008
Posts: 813

ok i get that.
I'll try it out.
Thank you.
sudipto shekhar
Ranch Hand

Joined: Apr 02, 2008
Posts: 813

Yes, it worked.

As I am rookie to servlets,all your hepls and suggestions are helping me a lot.
Thank you once again.

 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Can not retrive value from cookie
 
Similar Threads
Can not get context attribute
Session tracking with URL rewriting
JSp with Cookies HFSJ pg 386
Problem regarding to Cookies with EL, HFSJ pg 386
About doGet and doPost of Services