RE: Redirect instead of forward in action mapping

2005-02-10 Thread Neil Aggarwal
nal Message- > From: David G. Friedman [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 10, 2005 5:14 PM > To: Struts Users Mailing List > Subject: RE: Redirect instead of forward in action mapping > > > Neil > > I was doing that from memory so a quick check in

RE: Redirect instead of forward in action mapping

2005-02-10 Thread David G. Friedman
Neil Aggarwal [mailto:[EMAIL PROTECTED] Sent: Thursday, February 10, 2005 5:49 PM To: 'Struts Users Mailing List' Subject: RE: Redirect instead of forward in action mapping David: I tried this index.jsp page: <[EMAIL PROTECTED] uri="/WEB-INF/struts-tiles.tld" prefix=&q

RE: Redirect instead of forward in action mapping

2005-02-10 Thread Neil Aggarwal
TED] > Sent: Thursday, February 10, 2005 4:29 PM > To: Struts Users Mailing List > Subject: RE: Redirect instead of forward in action mapping > > > A JSP can use the tiles taglib and pick a tiles definition to > "show". This > is how I setup my webapps' inde

RE: Redirect instead of forward in action mapping

2005-02-10 Thread David G. Friedman
; prefix="tiles" %> etc. Regards, David -Original Message- From: Benedict, Paul C [mailto:[EMAIL PROTECTED] Sent: Thursday, February 10, 2005 12:47 PM To: 'Struts Users Mailing List' Subject: RE: Redirect instead of forward in action mapping Neil, Unfortu

RE: Redirect instead of forward in action mapping

2005-02-10 Thread Benedict, Paul C
ROTECTED] Sent: Thursday, February 10, 2005 12:40 PM To: 'Struts Users Mailing List' Subject: RE: Redirect instead of forward in action mapping Paul: I see. I did this which worked: Is there a better approach to doing this? Thanks, Neil -- Neil Aggarw

RE: Redirect instead of forward in action mapping

2005-02-10 Thread Neil Aggarwal
or less! http://newsletter.JAMMConsulting.com > -Original Message- > From: Benedict, Paul C [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 10, 2005 11:30 AM > To: 'Struts Users Mailing List' > Cc: 'Neil Aggarwal' > Subject: RE: Redirec

RE: Redirect instead of forward in action mapping

2005-02-10 Thread Benedict, Paul C
Neil, You cannot redirect to a Tile. A Redirect is specific to a URI. Thanks, Paul -Original Message- From: Neil Aggarwal [mailto:[EMAIL PROTECTED] Sent: Thursday, February 10, 2005 12:13 PM To: 'Struts Users Mailing List' Subject: RE: Redirect instead of forward in acti

RE: Redirect instead of forward in action mapping

2005-02-10 Thread Neil Aggarwal
ginal Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Siggelkow > Sent: Wednesday, February 09, 2005 10:23 PM > To: user@struts.apache.org > Subject: Re: Redirect instead of forward in action mapping > > > Set the redirect attribute on the forward to true: &g

Re: Redirect instead of forward in action mapping

2005-02-09 Thread Bill Siggelkow
Set the redirect attribute on the forward to true: Of course, if the success page displays data you will need to make sure that is is available in the session since it you will be issuing a new request. (You may want to look into the saveMessages(HttpSession session) method). Neil Aggarwal wro