I asked a while ago about this, but somehow I wasn't answered, but I still would like to use Tomcat! So, I'll try again.
Scenario: A simple [test] webapp, less than 10 servlets, one filter. WinXP, 768m ram, my developer machine, deploying using the "MyEclipse" 3.82 webtool plugin on Eclipse 3.0.1. (After this works, I want to get Tomcat running on Linux and Solaris 10 machines on the same lan, then onto customer sites. anyhow...)
The point here is that this app is running, no problems on Sun 8.01, but I would like to get it on Tomcat since it uses only Servlets/jsp's.
Here is a snippet of the server log:
INFO: Installing web application at context path /Math1 from URL file:Q:\Programs\Java\jakarta-tomcat\Tomcat 5.0.30\webapps\Math1
19/12/2004 13:33:56 org.apache.catalina.core.StandardContext start
SEVERE: Error filterStart
19/12/2004 13:33:56 org.apache.catalina.core.StandardContext start
SEVERE: Context startup failed due to previous errors
And here is the top of the web.xml including the entire filter section.
<?xml version="1.0" encoding="UTF-8" ?>
- <#> <web-app version="*2.4*" xmlns="*http://java.sun.com/xml/ns/j2ee*" xmlns:xsi="*http://www.w3.org/2001/XMLSchema-instance*" xsi:schemaLocation="*http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd*">
- <#> <filter>
<filter-name>LogtrackFilter</filter-name>
<> <filter-class>ez.servlets.filters.LogtrackFilter</filter-class>
</filter>
- <#> <filter-mapping>
<filter-name>LogtrackFilter</filter-name>
<> <url-pattern>/*</url-pattern>
</filter-mapping>
----------------------------------------------------------
Thank you all;
-nat
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
