Re: Alternate for actionRedirect

2011-12-04 Thread aum strut
Thing is i am already constructing the object there in my callback action once user authorize me i will make some request to these services to get user public profile so that means instead of using this profile object i have to pass individual piece of information kind of pain and i want URL to be

Re: Alternate for actionRedirect

2011-12-04 Thread Maurizio Cucchiara
Why is long request URI an issue for you? You could do a simple redirect passing every parameters you want preserve. Twitter :http://www.twitter.com/m_cucchiara G+ :https://plus.google.com/107903711540963855921 Linkedin:http://www.linkedin.com/in/mauriziocucchiara Maurizio Cucchi

Alternate for actionRedirect

2011-12-04 Thread aum strut
Hi All, Currently i am working with OAuth in my web-app, So i am redirecting my user to the third party system (gmail/yahoo) and once they authenticate thereself with those system ,these system will redirect back user to my App at a specified callback URL Things are working fine except that when

Re: ActionRedirect

2009-11-04 Thread Dave Newton
fea jabi wrote: Is there a way I can get this list thru redirect??? No, a redirect is a new request. Dave - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.

ActionRedirect

2009-11-04 Thread fea jabi
I am setting an list as a request attibute. I am creating a new ActionRedirect(...) and adding parameter to it. redirected action class is not having the request attribute list. request.setAttribute("EMPLIST", emplist ); AcitonRedirect redirect = new Acti

Re: [S2] problem still with "actionRedirect" and "redirect" results (Struts2.1.2)

2008-08-23 Thread Andreas Mähler
Hello Daniel, in Struts 2.1.2, you can add an empty string to the comma sperated list that goes to the "struts.action.extension" parameter (e.g. "action,," allows you to use the normal ".action" extension and the empty one) . If you would like to switch off the extension entirely (like I do),

Re: [S2] problem still with "actionRedirect" and "redirect" results (Struts2.1.2)

2008-08-01 Thread Pierre Thibaudeau
Thank you Andreas and Brad. I too shall be impatiently looking forward to 2.1.3! And I'd rather not backtrack to 2.0.11 as I want Ajax/dojo as a plugin and not as a theme. 2008/8/1 Andreas Mähler <[EMAIL PROTECTED]> > I am also desperately waiting for version 2.1.3 since it seems to be fixed > t

Re: [S2] problem still with "actionRedirect" and "redirect" results (Struts2.1.2)

2008-08-01 Thread Andreas Mähler
Hello Pierre, I am also desperately waiting for version 2.1.3 since it seems to be fixed there[1]. I cannot downgrade to 2.0.x, since I am using the "no .action extension" feature of 2.1.x CU ~Andreas [1] https://issues.apache.org/struts/browse/WW-2676 Pierre Thibaudeau schrieb: The JIRA

RE: [S2] problem still with "actionRedirect" and "redirect" results (Struts2.1.2)

2008-08-01 Thread Brad A Cupit
Pierre Thibaudeau [mailto:[EMAIL PROTECTED] wrote: > The JIRA tracker lists the following issues: > https://issues.apache.org/struts/browse/WW-1714 > as fixed in version 2.0.8, but it certainly doesn't work in 2.1.2. have you tried Struts 2.0.11.2? You may already know it, but Struts 2.1.2 is stil

[S2] problem still with "actionRedirect" and "redirect" results (Struts2.1.2)

2008-07-31 Thread Pierre Thibaudeau
I have read a number of reports spanning the last year and describing the problem of wanting to attach parameters to an actionRedirect, as in the following example: myAction 23 This issue has been raised a number of times, I believe, but

Re: ActionRedirect with wrong absolute path

2007-08-30 Thread Paul Benedict
the > production's OAS (two servers). > The problems occurss when the application need to do a ActionRedirect > (redirect true), after a simple update/insert into the DB (with Hibernate). > The flow is as follow: 1).- The "show_Product.do" is launched and it goes > well a

ActionRedirect with wrong absolute path

2007-08-30 Thread Hayrol Reyes Mejía
e problems occurss when the application need to do a ActionRedirect (redirect true), after a simple update/insert into the DB (with Hibernate). The flow is as follow: 1).- The "show_Product.do" is launched and it goes well and show the Product.jsp (with the show section actived). 2).

ActionRedirect with wrong absolute path

2007-08-30 Thread Hayrol Reyes Mejía
ervers). The problems occurss when the application need to do a ActionRedirect (redirect true), after a simple update/insert into the DB (with Hibernate). The flow is as follow: 1).- The "show_Product.do" is launched and it goes well and show the Product.jsp (with the show section actived).

Re: ActionRedirect with POST parameters

2007-01-05 Thread Mike Baroukh
ler ha scritto: > Hi, > > Is there a way to use ActionRedirect(Struts 1.2.7 & later) with POST > parameters and not GET. Errr... no, it is an HTTP limitation. Antonio - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: ActionRedirect with POST parameters

2007-01-05 Thread Michael Jouravlev
On 1/5/07, Information Guzzler <[EMAIL PROTECTED]> wrote: Hi, Is there a way to use ActionRedirect(Struts 1.2.7 & later) with POST parameters and not GET. No. Currently Struts 1.x is able either to forward (in-server) or to redirect (through browser) a request based on "

Re: ActionRedirect with POST parameters

2007-01-05 Thread Information Guzzler
Yep, Is there a workaround? On 1/5/07, Antonio Petrelli <[EMAIL PROTECTED]> wrote: Information Guzzler ha scritto: > Hi, > > Is there a way to use ActionRedirect(Struts 1.2.7 & later) with POST > parameters and not GET. Errr... no, it is an HTT

Re: ActionRedirect with POST parameters

2007-01-05 Thread Antonio Petrelli
Information Guzzler ha scritto: Hi, Is there a way to use ActionRedirect(Struts 1.2.7 & later) with POST parameters and not GET. Errr... no, it is an HTTP limitation. Antonio - To unsubscribe, e-mail: [EMAIL PROTECTED]

ActionRedirect with POST parameters

2007-01-05 Thread Information Guzzler
Hi, Is there a way to use ActionRedirect(Struts 1.2.7 & later) with POST parameters and not GET. /S