| Author |
addheader and addcookie
|
jamil lusa
Ranch Hand
Joined: Aug 18, 2011
Posts: 58
|
|
[color=darkred]i know setheader will replace the previous header value, how about addheader? how does it handle mutliple same name string added? for example:
what happens if i getHeader('abc')? there is no any clue from API.
thank in advanced![/color]
|
 |
Frits Walraven
Rancher
Joined: Apr 07, 2010
Posts: 742
|
|
Hi
what happens if i getHeader('abc')? there is no any clue from API.
There actually is an explanation:
javax.servlet.http Interface HttpServletResponse getHeader
java.lang.String getHeader( java.lang.String name)
Gets the value of the response header with the given name.
If a response header with the given name exists and contains multiple values, the value that was added first will be returned.
Regards,
Frits
|
 |
jamil lusa
Ranch Hand
Joined: Aug 18, 2011
Posts: 58
|
|
|
thanks, i thought getHeader is from HttpServletRequest API xD. that is why i cannot find the info.
|
 |
 |
|
|
subject: addheader and addcookie
|
|
|