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
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

