Hi
If i add a custom header to the HttpServletResponse object, like say,
and then do a response.SendRedirect(URL) to some other URL, will i be able to read this header value at that app?
I've tried this with 2 dummy
servlets in different apps but doesn't seem to be working. Am i getting something wrong here or am i trying something which is not right?
At the redirected URL, i retrieve the headers using request.getHeader(headerName);
TIA