[Actionframework-users] ANNOUNCE: ActionServlet 0.94
Status: Inactive
Brought to you by:
ptoman
From: Petr T. <Pet...@pi...> - 2003-02-15 09:52:33
|
ActionServlet 0.94 (http://www.actionframework.org) Changes from 0.94beta2 ---------------------- - ActionServlet_0_94beta2.dtd -> ActionServlet_0_94.dtd - added a new Validate example Hints for upgrading from 0.93x (same as for 0.94beta and beta2) -------------------------------- - return type of ActionServlet.getProperty(...) methods changed to Object -> quick fix: change calls: servlet.getProperty(...) to servlet.getProperty(...).toString() - access moddifiers of most previously "protected" ActionServlet methods changed to "public" -> subclasses must also use "public" modifier - ActionServlet.invokeMethod() throws Exception instead of InvocationTargetException -> widen "throws" clause too - beforeInvoke(), afterInvoke(), invokeMethod(), beforeConversion(), conversionError(), getActionMethod(), unassignedAction()), onException() and onReturn() methods of ActionServlet had 'form' parameter, but now are passsed 'requestType' parameter instead and values of 'form' and 'action' parameters are concatenated by '.': 1) form="form1", action="submit" -> action="form1.submit" 2) no 'form', action="withNoForm" -> action="withNoForm" -> if you have used 'form' parameter in you overridden methods, you have to verify if your code is correct -Petr -- [ http://dione.zcu.cz/~toman40 - Pet...@pi... - ICQ=22957959 ] |