| Author |
problem with this cookie program, getting a blank output
|
yuvraj kotegar
Ranch Hand
Joined: Jul 31, 2008
Posts: 120
|
|
This is my servlet program which retrieves cookies [ September 04, 2008: Message edited by: Bear Bibeault ]
|
 |
yuvraj kotegar
Ranch Hand
Joined: Jul 31, 2008
Posts: 120
|
|
this is my xml file
|
 |
yuvraj kotegar
Ranch Hand
Joined: Jul 31, 2008
Posts: 120
|
|
i try to retrieve my program by http://localhost:8080/allcookie/cookieget am not getting any output.. am not able to figure out any problem.. allcookie is my project folder.. can anyone help?? i use the tomcat server am not getting any thing in response in browser. one more simple cookie program executed . only this one is not excuting... i mean not getting any cookies back to my browser
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56215
|
|
|
Are you getting no HTML at all sent? Of just an empty body?
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
yuvraj kotegar
Ranch Hand
Joined: Jul 31, 2008
Posts: 120
|
|
|
hi am getting the header . but the body is empty even though i have cookies stored
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56215
|
|
|
Cookies for the domain in which the servlet is executing? The browser will not return cookies for other domains.
|
 |
yuvraj kotegar
Ranch Hand
Joined: Jul 31, 2008
Posts: 120
|
|
ok. how do you retrieve cookies which is stored in our system then?? any other methods?
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56215
|
|
You don't. As I said, cookies will only be delivered to the domain that created them. What are you really trying to accomplish?
|
 |
yuvraj kotegar
Ranch Hand
Joined: Jul 31, 2008
Posts: 120
|
|
i was just trying to retrieve all cookies from my program just for my knowledge sake!
|
 |
Ankit Garg
Saloon Keeper
Joined: Aug 03, 2008
Posts: 9189
|
|
out.println("<HTML><HEAD><TITLE>"); out.println("Cookie using servlets"); out.println("</TITLE></HEAD></BODY>") The problem might be in what I have made bold. the body tag here is an ending tag and not starting tag. open the page in a browser, then if you get no output, view the source of the page from the browser. the content might be there but it is not getting displayed...
|
SCJP 6 | SCWCD 5 | Javaranch SCJP FAQ | SCWCD Links
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56215
|
|
No. The problem is that one cannot retrieve cookies for any domain except the one that set the cookie. Period. If you want to see what cookies are stored, use the browser tools provided for that purpose.
|
 |
Ankit Garg
Saloon Keeper
Joined: Aug 03, 2008
Posts: 9189
|
|
Or you can set cookies from your own code and then display their values.... for that create cookie objects like Cookie c = new Cookie("name","value"); and then add them to the response like response.addCookie(c); then the next time you refresh the page, you will get cookie values...
|
 |
Seetharaman Venkatasamy
Ranch Hand
Joined: Jan 28, 2008
Posts: 5575
|
|
if you want to display cookie then you need to set cookie example, Hope This Helps
|
 |
 |
|
|
subject: problem with this cookie program, getting a blank output
|
|
|