Tagged Questions
0
votes
1answer
164 views
glassfish servlet: how to know the referer url? if possible
with the HttpServletRequest object, we can have the getRequestURL, which shows the ressource requested, but in my case I would like to know from where the request comes:
I tried also getRemoteAddr() ...
0
votes
1answer
950 views
request.getHeader(“referer”), than back button reload the page
JSP1 links to JSP2.
JSP2 call a servlet that does some stuff and ends with:
response.sendRedirect(request.getHeader("referer"));
return;
At this point I'm back to JSP2.
The problem is that ...
2
votes
2answers
3k views
HTTP Referer after 302 Redirect
I am creating a website using Java servlets, and I have a page called LogIn. What I want to happen, is that once the user successfully fills out the login form, it returns them to the page that they ...
2
votes
1answer
4k views
HTTP Referer header in Struts 2
How can I get the Referer header under Struts2? Right now I'm using an ActionSupport class and I can't seem to get a ServletActionContext object or implement the ServletRequestAware interface? (Where ...