
10-06-2008, 11:55 PM
|
|
New Member
|
|
Join Date: Mar 2008
Posts: 6
|
|
Tomcat 6/Spring/Struts with AJP
I managed to configure Tomcat with Litespeed few times without any problem and this is my first time to configure Tomcat with Litespeed for a webapp that using spring and struts framework. I'm able to view JSP files but not action name e.g http://localhost/home.meta, it's shows eror 404
Litespeed: 3.3.19
OS: Linux
Tomcat: 6.0.18 with AJP 1.3
Java: 1.6.0
Suffixes: jsp, meta
Handler Type: Servlet Engine
Handler Name: [Server Level]: Catalina
Part of my web.xml as below:
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatch er</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>*.meta</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>*.jsp</url-pattern>
</filter-mapping>
localhost:8009 is working and no error found in log files, any idea guys?
|