I try to do a redirect between actions, the application is behind an apache proxy ,that makes it a bit complicated. In myaction:
ActionForward forward= new ActionForward("/myotheraction.do");
forward.setRedirect(true);
return forward;
The url that i use through proxy is
https://machine:8443/myapp/myaction.do. So when I make the redirect in my action, i would like to keep that url, but the url change to the application server url:
http://appmachine:11704/myapp/myotheraction. How can i fool struts to keep the proxy url? I don't wan't to do forward action.One solution is to use absolute url, but is there another way?