Re: LookupDispatchAction default

2004-03-25 Thread Brian Sayatovic/AMIG
: LookupDispatchAction default unspecified() is the method you want look at the javadoc. you do need the method name though /admin/list.do?method I saw that using submit as the parameter name causes problems so i wouldn't use that. On 24 Mar 2004, at 15:16, Brian Sayatovic/AMIG wrote: I'd like to be able

Re: LookupDispatchAction default

2004-03-25 Thread Brian Sayatovic/AMIG
= messages.getMessage(dispatch.parameter, mapping.getPath(), parameter); throw new ServletException(message); } It looks for the parameter's value and throws if the name is null so it never gets a chance to get to unspecified in Dispatch action. mas Brian Sayatovic/AMIG

LookupDispatchAction default

2004-03-24 Thread Brian Sayatovic/AMIG
I'd like to be able to have someone hit my action, /admin/list.do, without having to specify a submit paramater. However, the action is a subclass of LookupDispatchAction whci requires that the request parameter be supplied. Looking in the struts source code, it would be nice if the