Re: RequestProcessor question (redux)

2005-03-21 Thread Hubert Rabago
I think you should be able to do it. Have you tried it already? All processActionPerform() does is call the Action's execute() method, then pass exceptions to processException() if it gets any. If you want to skip the action execution for a reason you deem valid, go ahead. Hubert On Mon, 21

Re: RequestProcessor question (redux)

2005-03-21 Thread Joe Germuska
At 10:59 AM -0500 3/21/05, Joe Hertz wrote: I'm going to try again, stripping this question down to its fundamentals. If in a RequestProcessor processActionPerform() method, is it safe for me to return a mapping.findForward() directly without calling super.processActionPerform? Or do I need to

RequestProcessor question (redux)

2005-03-21 Thread Joe Hertz
I'm going to try again, stripping this question down to its fundamentals. If in a RequestProcessor processActionPerform() method, is it safe for me to return a mapping.findForward() directly without calling super.processActionPerform? Or do I need to call super.processActionPerform with with

RequestProcessor question (redux)

2005-03-21 Thread Joe Hertz
I'm going to try again, stripping this question down to its fundamentals. If in a RequestProcessor processActionPerform() method, is it safe for me to return a mapping.findForward() directly without calling super.processActionPerform? Or do I need to call super.processActionPerform with with

RE: RequestProcessor question (redux)

2005-03-21 Thread Joe Hertz
, March 21, 2005 11:00 AM To: 'Struts Users Mailing List' Subject: RequestProcessor question (redux) I'm going to try again, stripping this question down to its fundamentals. If in a RequestProcessor processActionPerform() method, is it safe for me to return a mapping.findForward() directly

RE: RequestProcessor question (redux)

2005-03-21 Thread Joe Hertz
, March 21, 2005 11:00 AM To: 'Struts Users Mailing List' Subject: RequestProcessor question (redux) I'm going to try again, stripping this question down to its fundamentals. If in a RequestProcessor processActionPerform() method, is it safe for me to return a mapping.findForward() directly

RE: RequestProcessor question (redux)

2005-03-21 Thread Joe Hertz
the one supported by my IDE... -Original Message- From: Hubert Rabago [mailto:[EMAIL PROTECTED] Sent: Monday, March 21, 2005 11:23 AM To: Struts Users Mailing List Subject: Re: RequestProcessor question (redux) I think you should be able to do it. Have you tried it already? All

RE: RequestProcessor question (redux)

2005-03-21 Thread Joe Hertz
the one supported by my IDE... -Original Message- From: Hubert Rabago [mailto:[EMAIL PROTECTED] Sent: Monday, March 21, 2005 11:23 AM To: Struts Users Mailing List Subject: Re: RequestProcessor question (redux) I think you should be able to do it. Have you tried it already? All

Re: RequestProcessor question (redux)

2005-03-21 Thread Hubert Rabago
The issue seems to be retaining the user information after a redirect. This seems to be beyond Struts. Perhaps ask the Tomcat user list? On Mon, 21 Mar 2005 11:36:42 -0500, Joe Hertz [EMAIL PROTECTED] wrote: I did try it. Worked fine on my development box. But when I deployed it at my

RE: RequestProcessor question (redux)

2005-03-21 Thread Joe Hertz
Correction: It's happening on my dev box too. -Original Message- From: Joe Hertz [mailto:[EMAIL PROTECTED] Sent: Monday, March 21, 2005 11:37 AM To: 'Struts Users Mailing List' Subject: RE: RequestProcessor question (redux) I did try it. Worked fine on my development box

RE: RequestProcessor question (redux)

2005-03-21 Thread Joe Hertz
Correction: It's happening on my dev box too. -Original Message- From: Joe Hertz [mailto:[EMAIL PROTECTED] Sent: Monday, March 21, 2005 11:37 AM To: 'Struts Users Mailing List' Subject: RE: RequestProcessor question (redux) I did try it. Worked fine on my development box

RE: RequestProcessor question (redux)

2005-03-21 Thread Joe Hertz
Or securityfilter. Yep. It's beyond Struts. -Original Message- From: Hubert Rabago [mailto:[EMAIL PROTECTED] Sent: Monday, March 21, 2005 11:53 AM To: Struts Users Mailing List Subject: Re: RequestProcessor question (redux) The issue seems to be retaining the user information

RE: RequestProcessor question (redux)

2005-03-21 Thread Joe Hertz
Or securityfilter. Yep. It's beyond Struts. -Original Message- From: Hubert Rabago [mailto:[EMAIL PROTECTED] Sent: Monday, March 21, 2005 11:53 AM To: Struts Users Mailing List Subject: Re: RequestProcessor question (redux) The issue seems to be retaining the user information

RE: RequestProcessor question (redux)

2005-03-21 Thread Joe Germuska
At 11:36 AM -0500 3/21/05, Joe Hertz wrote: I did try it. Worked fine on my development box. But when I deployed it at my hosting company I found that httpSession information was getting blown away in the process of doing the redirect. The redirect was fine, but on the next submission, the user's