Re: Redirect-action parameters via POST

2008-04-28 Thread KonTiki
--- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/Redirect-action-parameters-via-POST-tp16

Re: Redirect-action parameters via POST

2008-04-25 Thread Guillaume Bilodeau
>>>> action that's the redirect target below is actually the recipient of >>>> quite a few links (in fact the basic point of the application is to >>>> facilitate document submission for various purposes). >>>> >>>> If this isn't

RE: Redirect-action parameters via POST

2008-04-25 Thread Allen, Daniel
e.org Subject: Re: Redirect-action parameters via POST The use case you're describing would be best implemented using flash scope. Your options include: . use the Scope plugin (http://cwiki.apache.org/S2PLUGINS/scope-plugin.html) . implement the scope yourself using a result / intercept

Re: Redirect-action parameters via POST

2008-04-25 Thread Guillaume Bilodeau
cilitate document submission for various purposes). >>> >>> If this isn't possible purely via configuration, then yeah, session >>> storage is definitely my fallback plan. >>> >>> ~DVA >>> >>> >>> >>> -Orig

Re: Redirect-action parameters via POST

2008-04-25 Thread Dave Newton
--- ancatdubher <[EMAIL PROTECTED]> wrote: > (Also, the URL is limited to 256 characters length). I've never noticed that limitation; I haven't seen a mainstream browser that wouldn't accept or send anything much less than about 2K, and some will do twice that. Dave

Re: Redirect-action parameters via POST

2008-04-25 Thread ancatdubher
t;> If this isn't possible purely via configuration, then yeah, session >> storage is definitely my fallback plan. >> >> ~DVA >> >> >> >> -Original Message- >> From: Nils-Helge Garli Hegvik [mailto:[EMAIL PROTECTED] >>

Re: Redirect-action parameters via POST

2008-04-25 Thread Nils-Helge Garli Hegvik
- > From: Nils-Helge Garli Hegvik [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 24, 2008 3:58 PM > To: Struts Users Mailing List > Subject: Re: Redirect-action parameters via POST > > Can you put the info on the session? > > Nils-H > > On Thu, Apr 24, 2008 a

RE: Redirect-action parameters via POST

2008-04-24 Thread Allen, Daniel
ruts Users Mailing List Subject: Re: Redirect-action parameters via POST Can you put the info on the session? Nils-H On Thu, Apr 24, 2008 at 9:52 PM, Allen, Daniel <[EMAIL PROTECTED]> wrote: > Hi, all. > > I'm using the snippet below[1] in my struts.xml file to send finish a

Re: Redirect-action parameters via POST

2008-04-24 Thread Nils-Helge Garli Hegvik
Can you put the info on the session? Nils-H On Thu, Apr 24, 2008 at 9:52 PM, Allen, Daniel <[EMAIL PROTECTED]> wrote: > Hi, all. > > I'm using the snippet below[1] in my struts.xml file to send finish an > action with a redirect to another, and sending a parameter along. > However, Struts 2 de

Redirect-action parameters via POST

2008-04-24 Thread Allen, Daniel
Hi, all. I'm using the snippet below[1] in my struts.xml file to send finish an action with a redirect to another, and sending a parameter along. However, Struts 2 defaults to passing the parameter via appending it to the URL in a GET request. I'm going to need to add additional parameters, some o

Re: redirect-action parameters

2006-12-26 Thread Chong Yoke Ping
hi, Wonder if you have solved the following problem. I encounter the same problem and after much attempts, I discover that you can do the following: anotherBlahAction true name="yourDynamicParamName">${yourDynamicParamValue}

Re: redirect-action parameters

2006-11-26 Thread Chris Pratt
Never mind, misread the original question. (*Chris*) On 11/26/06, Chris Pratt <[EMAIL PROTECTED]> wrote: Try the tag. (*Chris*) On 11/23/06, Pascal Lalonde <[EMAIL PROTECTED] > wrote: > > Based on this sample from the web site documentation: > > > > generateReport >

Re: redirect-action parameters

2006-11-26 Thread Chris Pratt
Try the tag. (*Chris*) On 11/23/06, Pascal Lalonde <[EMAIL PROTECTED]> wrote: Based on this sample from the web site documentation: generateReport /genReport pie 100 100 How can I add dynamic parameters ? Here, value

redirect-action parameters

2006-11-23 Thread Pascal Lalonde
Based on this sample from the web site documentation: generateReport /genReport pie 100 100 How can I add dynamic parameters ? Here, values are fixed but what if I want to set a dynamic value from the action data ? Based