Posted By:
Amir_Pashazadeh
Posted On:
Monday, September 8, 2003 04:45 PM
Hi
I think the exception is ture, if you extend com.lf.csg.common.struts.CustomRequestProcessor from org.apache.struts.action.RequestProcessor (and I think you did this) the exception is true.
RequestProcessor is not a Servlet, but the ActionServlet is, and ActionServlet uses RequestProcessor internally by calling its methods...
You should set the servlet class in your web.xml to org.apache.sturts.action.ActionServlet and mention to use your custom request processor (there was a parameter in web.xml or struts-config.xml for setting the request processor class used by action servlet, refere to sturts documentation).
Amir Pashazadeh