| Author |
Add parameter in Header
|
Luiz Pereira
Greenhorn
Joined: Mar 18, 2004
Posts: 6
|
|
How can I add parameter in header request and use request.getHeader() ? I know request.getParameter but a need this parameter in header. thanks [ May 26, 2004: Message edited by: Luiz Pereira ]
|
 |
Mike Nightsky
Ranch Hand
Joined: Aug 18, 2001
Posts: 48
|
|
you mean in response. just type response.setHeader(name, value); and you have it in the header. to get it back from the incomming request type: String value = request.getHeader(name); thats all. Mike
|
Win the opportunity to make money on the Internet<br /><a href="http://sweeps.sitesell.com/minirich.html" target="_blank" rel="nofollow">http://sweeps.sitesell.com/minirich.html</a>
|
 |
 |
|
|
subject: Add parameter in Header
|
|
|