Re: I am getting frustrated with LookupDispatchAction

2005-11-08 Thread Michael Jouravlev
On 10/19/05, Adam Hardy [EMAIL PROTECTED] wrote: Michael Jouravlev on 19/10/05 00:44, wrote: On 10/18/05, Adam Hardy [EMAIL PROTECTED] wrote: Secondly, getKeyMethodMap() looks really clunky - is there no way this can be pushed into the struts-config.xml? It can be done, but if this to

RE: I am getting frustrated with LookupDispatchAction

2005-10-19 Thread bsimonin
Message- From: Simonin, Bradley K. (Brad) Sent: Mon 10/17/2005 4:18 PM To: user@struts.apache.org Subject: I am getting frustrated with LookupDispatchAction Hi. I am using struts 1.2.7. My struts-config-xml file has the following: action path=/mywizard1 name=wizardForm

Re: I am getting frustrated with LookupDispatchAction

2005-10-19 Thread Adam Hardy
Michael Jouravlev on 19/10/05 00:44, wrote: On 10/18/05, Adam Hardy [EMAIL PROTECTED] wrote: Secondly, getKeyMethodMap() looks really clunky - is there no way this can be pushed into the struts-config.xml? It can be done, but if this to be defined inside existing structures like action, then

Re: I am getting frustrated with LookupDispatchAction

2005-10-18 Thread Michael Jouravlev
On 10/17/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi. I am using struts 1.2.7. My struts-config-xml file has the following: action path=/mywizard1 name=wizardForm scope=session type=edu.nmsu.psl.userwizard.AddPSLUserWizardAction

Re: I am getting frustrated with LookupDispatchAction

2005-10-18 Thread Martin Gainty
insightful.. Martin- - Original Message - From: Michael Jouravlev [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Sent: Tuesday, October 18, 2005 12:09 PM Subject: Re: I am getting frustrated with LookupDispatchAction On 10/17/05, [EMAIL PROTECTED] [EMAIL PROTECTED

Re: I am getting frustrated with LookupDispatchAction

2005-10-18 Thread Michael Jouravlev
); return mapping.findForward(addpage); } Very insightful.. Martin- - Original Message - From: Michael Jouravlev [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Sent: Tuesday, October 18, 2005 12:09 PM Subject: Re: I am getting frustrated

Re: I am getting frustrated with LookupDispatchAction

2005-10-18 Thread Adam Hardy
Michael, I like your code alot but a couple of things prevent me from purloining it for my own purposes: firstly, I like to allocate my base class to sort out user, locale, msgKeys, and messages objects for use in the subclass. It doesn't seem to be possible to sandwich a subclass

Re: I am getting frustrated with LookupDispatchAction

2005-10-18 Thread Michael Jouravlev
On 10/18/05, Adam Hardy [EMAIL PROTECTED] wrote: Michael, I like your code alot but a couple of things prevent me from purloining it for my own purposes: firstly, I like to allocate my base class to sort out user, locale, msgKeys, and messages objects for use in the subclass. It doesn't

I am getting frustrated with LookupDispatchAction

2005-10-17 Thread bsimonin
Hi. I am using struts 1.2.7. My struts-config-xml file has the following: action path=/mywizard1 name=wizardForm scope=session type=edu.nmsu.psl.userwizard.AddPSLUserWizardAction input=/step1.jsp validate=false

Re: I am getting frustrated with LookupDispatchAction

2005-10-17 Thread Paul Benedict
Can someone save me from insanity? Questionable... But I get the following error in tomcat: javax.servlet.ServletException: Request[/mywizard1] does not contain handler parameter named 'method'. Do you have a method named 'method'? It should look like the typical Struts execute method.

Re: I am getting frustrated with LookupDispatchAction

2005-10-17 Thread Kishore Senji
I guess you don't have a property for button.next defined in your MessageResources. Please make sure you have defined that property in the resources. On 10/17/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi. I am using struts 1.2.7. My struts-config-xml file has the following: action

Re: I am getting frustrated with LookupDispatchAction

2005-10-17 Thread Martin Gainty
, 2005 6:18 PM Subject: I am getting frustrated with LookupDispatchAction Hi. I am using struts 1.2.7. My struts-config-xml file has the following: action path=/mywizard1 name=wizardForm scope=session type=edu.nmsu.psl.userwizard.AddPSLUserWizardAction input

Re: I am getting frustrated with LookupDispatchAction

2005-10-17 Thread Wendy Smoak
From: [EMAIL PROTECTED] my jsp has the following: html:submit property=methodbean:message key=button.next//html:submit But I get the following error in tomcat: javax.servlet.ServletException: Request[/mywizard1] does not contain handler parameter named 'method'. Can someone save me from

Re: I am getting frustrated with LookupDispatchAction

2005-10-17 Thread Sunil_Sahu
Did you implement the getKeyMethodMap() method in the subclass of LookupDispatchAction. Sunil [EMAIL PROTECTED] 10/18/2005 03:48 AM Please respond to Struts Users Mailing List user@struts.apache.org To user@struts.apache.org cc Subject I am getting frustrated with LookupDispatchAction

Re: I am getting frustrated with LookupDispatchAction

2005-10-17 Thread rajasekhar . cherukuri
Have you extended LookUpDipatchAction your ddPSLUserWizardAction ?? Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipient, any dissemination, use, review, distribution,

Re: I am getting frustrated with LookupDispatchAction

2005-10-17 Thread Laurie Harper
@struts.apache.org Sent: Monday, October 17, 2005 6:18 PM Subject: I am getting frustrated with LookupDispatchAction Hi. I am using struts 1.2.7. My struts-config-xml file has the following: action path=/mywizard1 name=wizardForm scope=session type