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

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 , then I wo

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: my jsp has the following: But I get

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 do

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 in-betwee

Re: I am getting frustrated with LookupDispatchAction

2005-10-18 Thread Michael Jouravlev
t;); > } > Very insightful.. > Martin- > > - Original Message - > From: "Michael Jouravlev" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" > Sent: Tuesday, October 18, 2005 12:09 PM > Subject: Re: I am getting frus

Re: I am getting frustrated with LookupDispatchAction

2005-10-18 Thread Martin Gainty
ServletException { System.out.println("--> add"); return mapping.findForward("addpage"); } Very insightful.. Martin- - Original Message - From: "Michael Jouravlev" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent:

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: > > name="wizardForm" > scope="session" > type="edu.nmsu.psl.userwizard.AddPSLUserWizardAction" > input="/step1

Re: I am getting frustrated with LookupDispatchAction

2005-10-17 Thread Laurie Harper
to an action. The two aren't interchangeable. L. Martin Gainty wrote: I have not seen parameter as an attribute of Anyone else??? M- - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Monday, October 17, 2005 6:18 PM Subject: I am getting frustrated with LookupDispatch

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, prin

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" To cc Subject I am getting frustrated with LookupDispatchAction Hi. I am using

Re: I am getting frustrated with LookupDispatchAction

2005-10-17 Thread Wendy Smoak
From: <[EMAIL PROTECTED]> my jsp has the following: key="button.next"/> 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 insanity? No, but you can save yourself. :) First

Re: I am getting frustrated with LookupDispatchAction

2005-10-17 Thread Martin Gainty
I have not seen parameter as an attribute of Anyone else??? M- - Original Message - From: <[EMAIL PROTECTED]> To: 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 h

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: > > name=

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.

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: my jsp has the following: But I get the following error in tomcat: javax.servlet.ServletException: Request[/mywizard1] does not contain handler parameter named 'method'. Can someone save me