Re: Dynamic forwardings...

2001-08-27 Thread Jan Sorensen
); // where this might have the value foo return new ForwardingActionForward(path.toString()); -- Martin Cooper -Original Message- From:David Corbin [EMAIL PROTECTED] Sent:Sun, 26 Aug 2001 21:07:03 -0400 To: [EMAIL PROTECTED] Subject: Re: Dynamic forwardings

Re: Dynamic forwardings...

2001-08-27 Thread David Corbin
- From: Ted Husted [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, August 26, 2001 9:11 PM Subject: Re: Dynamic forwardings... You can construct ActionForwards from scratch, and I have seen people include query strings with that. http://www.mail-archive.com/struts-user@jakarta.apache.org

Re: Dynamic forwardings...

2001-08-27 Thread Jan Sorensen
arguments get passed on when I forward to another action? - Original Message - From: Ted Husted [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, August 26, 2001 9:11 PM Subject: Re: Dynamic forwardings... You can construct ActionForwards from scratch, and I have seen people

Re: Dynamic forwardings...

2001-08-27 Thread Ted Husted
. Are you saying that if I have a populated ActionForm, then all of those arguments get passed on when I forward to another action? - Original Message - From: Ted Husted [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, August 26, 2001 9:11 PM Subject: Re: Dynamic forwardings... You

Re: Dynamic forwardings...

2001-08-26 Thread Ted Husted
For a forward, you just put in an encoded query string for the path: forward name=itemAdd path=/do/item/Add?code=whatever/ For an action mapping, you can use the parameter property action path=/do/item/Add ...

Re: Dynamic forwardings...

2001-08-26 Thread David Corbin
PM Subject: Re: Dynamic forwardings... For a forward, you just put in an encoded query string for the path: forward name=itemAdd path=/do/item/Add?code=whatever/ For an action mapping, you can use the parameter property action path=/do/item/Add

Re: Dynamic forwardings...

2001-08-26 Thread Ted Husted
whatever value is dynamic. It's based on input (a parameter) into the action. I don't yet understand the best solution for that. - Original Message - From: Ted Husted [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, August 26, 2001 2:56 PM Subject: Re: Dynamic forwardings

Re: Dynamic forwardings...

2001-08-26 Thread David Corbin
that list.do?tableID=foo be forwarded. Struts doesn't seem to provide a way to handle this last case. If it does, I don't understand it. David - Original Message - From: Ted Husted [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, August 26, 2001 7:14 PM Subject: Re: Dynamic forwardings

Re: Dynamic forwardings...

2001-08-26 Thread Ted Husted
seem to provide a way to handle this last case. If it does, I don't understand it. David - Original Message - From: Ted Husted [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, August 26, 2001 7:14 PM Subject: Re: Dynamic forwardings... Typically, there would be a finite

Re: Dynamic forwardings...

2001-08-26 Thread Martin Cooper
this might have the value foo return new ForwardingActionForward(path.toString()); -- Martin Cooper -Original Message- From:David Corbin [EMAIL PROTECTED] Sent:Sun, 26 Aug 2001 21:07:03 -0400 To: [EMAIL PROTECTED] Subject: Re: Dynamic forwardings... I'm not sure where I'm