Re: Re: Struts1.1 : subclass ActionServlet

2002-11-06 Thread aduprat . struts
: subclass ActionServlet A: Struts Users Mailing List [EMAIL PROTECTED] Well, there could still be cases where you wish to extend ActionServlet, but moreover I think folks will probably extend RequestProcessor instead. For initialization logic, ActionServlet is one spot - writing a class

Re: Re: Struts1.1 : subclass ActionServlet

2002-11-05 Thread aduprat . struts
: subclass ActionServlet A: Struts Users Mailing List [EMAIL PROTECTED] Why must you redefine init? Are you aware of the plugin architechture in 1.1, and why does it not fit your needs? The error looks like you made a boo-boo in your config file. It's not syntactically valid. That's my first

Re: Struts1.1 : subclass ActionServlet

2002-11-05 Thread Eddie Bush
Well, there could still be cases where you wish to extend ActionServlet, but moreover I think folks will probably extend RequestProcessor instead. For initialization logic, ActionServlet is one spot - writing a class that implements org.apache.struts.action.PlugIn is another. The interface

Struts1.1 : subclass ActionServlet

2002-11-04 Thread aduprat . struts
Hi all, I'm trying to migrate my struts 1.0 application to struts 1.1. I'm also using struts menu extention. For this extention initialisation, I have to subclass ActionServlet in order to redefine init() method. So, i've done it and declare my new servlet in web.xml in place of ActionServlet.

Re: Struts1.1 : subclass ActionServlet

2002-11-04 Thread Eddie Bush
Why must you redefine init? Are you aware of the plugin architechture in 1.1, and why does it not fit your needs? The error looks like you made a boo-boo in your config file. It's not syntactically valid. That's my first impression. I've never seen the security thingies in the trace -