Re: DispatchAction nonexisting method

2008-03-06 Thread Lukasz Lenart
Hi Subclass the DispatchAction and override getMethod() like below Method getMethodName() { Method method = super.getMethod(); if (method == null) { method = clazz.getMethod("unspecified", types); } return method; } Regards -- Lukasz ---

RE: DispatchAction nonexisting method

2008-03-06 Thread Edward Song
al Message- From: Griffith, Michael * [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2008 4:15 PM To: Struts Users Mailing List Subject: RE: DispatchAction nonexisting method Hi Edward, Create a method for handling "all the rest" or unspecified actions, and delegate to your

RE: DispatchAction nonexisting method

2008-03-06 Thread Griffith, Michael *
g List' Subject: DispatchAction nonexisting method Hi all, First, this is not a Struts 2 question And thanks to anyone who reads below... I was wondering how other's handled this problem with the org.apache.struts.actions.DispatchAction in Struts 1.3.9. I have an

DispatchAction nonexisting method

2008-03-06 Thread Edward Song
Hi all, First, this is not a Struts 2 question.. And thanks to anyone who reads below. I was wondering how other's handled this problem with the org.apache.struts.actions.DispatchAction in Struts 1.3.9. I have an action that calls a data service that is to be presented to the user in n