RE: what is controller servlet in struts framework

2004-02-04 Thread Andrew Hill
The controller servlet is the struts ActionServlet class. You configure this in your web.xml file so that it sends all requests whose path ends in .do (or whatever extension/path mapping you choose for your actions) to this servlet. The ActionServlet will actually make use of another class to do t

RE: what is controller servlet in struts framework

2004-02-04 Thread Slattery, Tim - BLS
> I have been having a question. I do not understand what is > the controller servlet in the struts framewrok. Is it the > Action classes or struts-config.xml that is the controller > servlet for struts framework. Please let me know It's the Java servlet that is invoked whenever the browser inv

RE: what is controller servlet in struts framework

2004-02-04 Thread Smith, Darrin
It's the ActionServlet unless you are overriding it and will be seen in: MyServlet org.apache.struts.action.ActionServlet -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 04, 2004 8:58 AM To: [EMAIL PROTECTED] Subject: what is controlle