Re: Redirecting to outside the webapp

2005-01-25 Thread Jesus M. Rodriguez
Thanks Hubert, Looks like the manual redirect works. The path would work but I really don't know the hostname the app will be installed on. Best to simply redirect manually. Thanks Jesus Rodriguez Hubert Rabago wrote: If you create your own ActionForward, and you redirect with a string that start

Re: Redirecting to outside the webapp

2005-01-24 Thread Hubert Rabago
If you create your own ActionForward, and you redirect with a string that starts with "/", the result will still be the same. You can either do the redirect yourself as Wendy suggested or put the entire URL on the path you've configured: http://hostname/index.pxt"; redirect="true"/> Hubert On

Re: Redirecting to outside the webapp

2005-01-24 Thread Wendy Smoak
From: "Jesus M. Rodriguez" <[EMAIL PROTECTED]> > I want to be sent to http://hostname/index.pxt after the LoginSubmit > action has been executed. But we always get sent to > http://hostname/webappname/index.pxt which causes a 404. IIRC, from execute you can either create your own ActionForward (r

Redirecting to outside the webapp

2005-01-24 Thread Jesus M. Rodriguez
Hello All, Long time lurker, first time poster. I'm trying integrate our Java Struts webapplication with an existing web app. After logging into the Java site, I want to redirect to outside the webapp, but struts keeps prepending the webapp name. For example. in my struts-config.xml I have the fo