RE: Dynamic Forwards Offsite

2003-02-20 Thread Micael
: Micael [mailto:[EMAIL PROTECTED]] > Sent: 20 February 2003 21:30 > To: Struts Users Mailing List > Subject: RE: Dynamic Forwards Offsite > > > Thanks for responding, however, I try the following: > > > StringBuffer sb = new StringBuffer(); >

RE: Dynamic Forwards Offsite

2003-02-20 Thread David Bolsover
> To: Struts Users Mailing List > Subject: RE: Dynamic Forwards Offsite > > > Thanks for responding, however, I try the following: > > > StringBuffer sb = new StringBuffer(); > sb.append("http://www.somewhere.com/message";); > Act

RE: Dynamic Forwards Offsite

2003-02-20 Thread Micael
Thanks for responding, however, I try the following: StringBuffer sb = new StringBuffer(); sb.append("http://www.somewhere.com/message";); ActionForward forward = new ActionForward(sb.toString(), false); return forward; or: StringBuffer sb = new StringBuff

RE: Dynamic Forwards Offsite

2003-02-20 Thread Jerome Jacobsen
The javadoc for ActionForward state you can use an absolute URI for the path parameter. I've never tried it though. > -Original Message- > From: Micael [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 20, 2003 3:47 PM > To: [EMAIL PROTECTED] > Subject: Dynamic Forwards Offsite > > >

Re: dynamic forwards

2001-09-27 Thread lisa ward
Thanks, I will try this, who knows maybe I have barking up the wrong tree and just trying to be too smart. >From: "Gregor Rayman" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: <[EMAIL PROTECTED]> >Subject: Re: dynamic forwards >Date: Thu, 27

Re: dynamic forwards

2001-09-27 Thread Gregor Rayman
"lisa ward" <[EMAIL PROTECTED]> wrote: > In your message you said: > > "so you will know all paramaters in advance, since the checkboxes have been > submitted already". > > But since Im using a html:link (forward) instead of a submit, at which point > do I initialize the selected checkbox values

Re: dynamic forwards

2001-09-27 Thread lisa ward
From: "Gregor Rayman" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: <[EMAIL PROTECTED]> >Subject: Re: dynamic forwards >Date: Thu, 27 Sep 2001 09:27:10 +0200 > >"lisa ward" <[EMAIL PROTECTED]> > > > Hi again, > > > >

Re: dynamic forwards

2001-09-26 Thread Gregor Rayman
ly-To: [EMAIL PROTECTED] > >To: <[EMAIL PROTECTED]> > >CC: "lisa ward" <[EMAIL PROTECTED]> > >Subject: Re: dynamic forwards > >Date: Wed, 26 Sep 2001 20:55:34 +0200 > > > >"lisa ward" <[EMAIL PROTECTED]> wrote: > > >

Re: dynamic forwards

2001-09-26 Thread lisa ward
t the user has selected. Or am I just missing the point here? Please explain further and thank you very much for your patience. Thanks Lisa >From: "Gregor Rayman" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: <[EMAIL PROTECTED]> >CC: "lisa war

Re: dynamic forwards

2001-09-26 Thread Gregor Rayman
"lisa ward" <[EMAIL PROTECTED]> wrote: > Another quick question. How would I be able to initialize the hashMap. the > problem Im facing is that when I use a forward the submit is not called so > the values are not initialized in my bean. Here an quick and dirty example. (Dirty beacuse it uses

RE: dynamic forwards

2001-09-26 Thread lisa ward
OTECTED] >To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> >Subject: RE: dynamic forwards >Date: Wed, 26 Sep 2001 13:03:15 -0500 > >Lisa, >I haven't tried it myself, but according to the doc for the html:link tag, >you can specify a bean that returns a map w

Re: dynamic forwards

2001-09-26 Thread Gregor Rayman
"Martin, Margaret" <[EMAIL PROTECTED]> wrote: I have tried it. It works. (at least the CVS version) -- gR > Lisa, > I haven't tried it myself, but according to the doc for the html:link tag, > you can specify a bean that returns a map which specifies all of the > parameters... the contents of t

RE: dynamic forwards

2001-09-26 Thread Martin, Margaret
Lisa, I haven't tried it myself, but according to the doc for the html:link tag, you can specify a bean that returns a map which specifies all of the parameters... the contents of that bean clearly could change between invocations, thus giving you dynamic parameters... Hope this helps - Margaret