Bug 21157 - CookieExample is setting cookie after writing data
Summary: CookieExample is setting cookie after writing data
Status: RESOLVED FIXED
Alias: None
Product: Tomcat 4
Classification: Unclassified
Component: Webapps:Examples (show other bugs)
Version: 4.1.24
Hardware: All other
: P5 enhancement (vote)
Target Milestone: ---
Assignee: Tomcat Developers Mailing List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-06-27 23:12 UTC by Vishy Kasar
Modified: 2011-01-08 17:27 UTC (History)
0 users



Attachments
Proposed patch moving call to response.addCookie() before response.getWriter() (1.39 KB, patch)
2003-07-01 00:28 UTC, Stefan Radzom
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Vishy Kasar 2003-06-27 23:12:00 UTC
A servlet can not set the headers and cookies after writing data to the 
servlet's output stream. Once the servlet writes data, headers are committed. 
However CookieExample writes some data first before doing addCookie on the 
response. 

The reason why this code works at all even with the above bug is: The 
CookieExample is only writing a small amount of data before doing 
response.addCookie. That data is still held in buffer and not yet sent over 
the wire. Hence the headers are not yet committed. So it is pure luck that 
this example works. 

You can easily expose the bug by writing say 20K characters in this example 
before response.addCookie is called. You will see that the cookies that are 
adding to response are not actually sent back to client. 

Fix is simple. Move up the response.addCookie() before response.getWriter()
Comment 1 Remy Maucherat 2003-06-28 17:06:00 UTC
Well, I disagree. The buffer default size is specified in the spec (it's 2K I
think). Hence, if you write a small amount of data, the response will not be
committed and the cookies can be set reliably. You can also set the buffer size
manually, BTW.
So this will not be addressed; please do not reopen the report.
Comment 2 Vishy Kasar 2003-06-30 17:25:01 UTC
Here are some facts that may lead you to reconsider.

- The servlet spec itself does not mandate a default size for the buffer. The 
user can call response.setBufferSize to set the buffer to any size. 

- The user can tweak the bufferSize attribute of coyote or the legacy 
connector in server.xml. There is nothing preventing user to set it to 0 in 
which case the cookie example immediately breaks. 

- Users tend to use these examples as base for something that they like to 
achieve. So it is a good idea to provide users with an example that is more 
robust and does not break depending on how much data they write or what 
settings they have in server.xml. 
Comment 3 Stefan Radzom 2003-07-01 00:06:40 UTC
Well, I wasn't too happy with Remy's decision to mark this bug as invalid, 
either. Having thought about this for a while, I ended up with a list of facts 
almost identical to the one posted by Vichy. For an example refered to as a 
starting point for servlet developers and used as a source for copy&paste best 
effort should be made to use good coding practises.

Therefore, I decided to reopen this bug. I am currently working on a patch 
which I will soon propose for discussion.
Comment 4 Stefan Radzom 2003-07-01 00:28:28 UTC
Created attachment 7033 [details]
Proposed patch moving call to response.addCookie() before response.getWriter()
Comment 5 Mark Thomas 2011-01-08 17:27:54 UTC
Fixed in 7.0.x for 7.0.6 onwards but too trivial to consider back-porting.