ActionComponetServlet.findMapping is deprecated in Struts 1.1

2002-03-05 Thread Dirk Storck
Hi, I have seen that the methode findMapping in the ActionComponentServlet is deprecated. Wich one shall I use than ? Is that right that I now have to use Action.excecute instead of Action.performe ? Many thanks ! -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands,

Re: ActionComponetServlet.findMapping is deprecated in Struts 1.1

2002-03-05 Thread Cedric Dumoulin
Hi, Method findMapping() doesn't come from ActionComponentServlet, but from ActionServlet. It is true that it is now deprecated. Also, method perform() in Action is deprecated, and you should use execute() if you write new actions. Old actions still working because execute call perform.