Is it possible to add header values to the request (not the respo nse)?

2003-07-16 Thread White, Joshua A (HTSC, CASD)
Hey all, My production application uses a site minder web agent. This agent places two name/value pairs into the request header, one for userName, the other for domain. In my application, I have a filter which looks for these values to make sure the user is logged in. Currently I do not have

Re: Is it possible to add header values to the request (not the respo nse)?

2003-07-16 Thread Tim Funk
You can do this via a Filter and HttpServletRequestWrapper, where your imlpementation of HttpServletRequestWrapper will extend the needed getHeader methods to send the additional stuff you need. -Tim White, Joshua A (HTSC, CASD) wrote: Hey all, My production application uses a site minder web