In a HttpServlet in any method doXxxx you can call
resp.addHeader( java.lang.Strin g name, java.lang.Strin g value)
(resp is the HttpServletResp onse)
Hi,
I am using AuthenticationF ilter which will have request and response objects. I have to set header like "SAPUserID" and get the header value in the same class. Actually our application has a link from portal server. But for local testing we should set and get custom http header.
Comment