up vote 1 down vote favorite
share [g+] share [fb]

Struts 1.3 application. Main website is NOT served by struts/Java. I need to forward the result of a struts action to a page in the website, that is outside of the struts context. Currently, I forward to a JSP in context and use a meta-refresh to forward to the real location. That seems kinda sucky. Is there a better way?

link|improve this question

65% accept rate
feedback

3 Answers

up vote 2 down vote accepted

You can't "forward", in the strict sense. Just call sendRedirect() on the HttpServletResponse object in your Action class's execute() method. and, then 'return null'.

alternately, either call setModule on the ActionForward object (that you are going to return) or set the path to an absolute URI

link|improve this answer
My understanding is that an absolute URI that doesn't include the host/port is always considered relative to the app context. What does setModule() do? It's not clearly documented, and seems like "/whatever" is still relative to the app context? – davetron5000 Sep 15 '08 at 16:43
feedback

I ended up doing response.sendRedirect().

link|improve this answer
feedback

If this was still in the web application, you could use ServletContext.RequestDispatcher? That's how the Struts doForward() method works. However, to go outside Struts/Java, you need the sendRedirect().

RequestDispatcher rd = getServletContext().getRequestDispatcher(uri);
rd.forward(request, response);
link|improve this answer
I don't think it lets you go outside the context of the webapp.... – davetron5000 Jun 19 '09 at 14:52
You're right - I misread the question. I will edit my answer, but leave for completeness. – Kevin Hakanson Jun 19 '09 at 17:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.