Hey, I've got a small problem. I want to make a website with JSP pages and servlets with tomcat 5 as a server. Here's what it should do:
The guest arrives on the JSP page. The JSP page grabs the HTTP headers, invokes the StatistiekServlet servlet and passes the values of these headers to the servlet and the servlet stores them somewhere.
Here's the problem: If I include the Servlet using jsp:include and if the web.xml file is configured correctly, it will invoke the Servlet, but the CSS won't load.
If I change the URL pattern, the Servlet won't be invoked ("Resource unavailable") but the CSS is rendered.
Here's where the files are:
$CATALINA_HOME/webapps/ROOT/doc/o23/index.jsp (deze jsp file roept dus de StatistiekServlet aan)
$CATALINA_HOME/webapps/ROOT/doc/o23/StatistiekServlet
$CATALINA_HOME/webapps/ROOT/WEB-INF/classes/o23/StatistiekServlet
$CATALINA_HOME/webapps/ROOT/WEB-INF/classes/StatistiekServlet
(Yes, I have three locations for the statistics servlet. I don't know where to place it!)
Here's the code for the servlet in web.xml
Code:
<servlet>
<servlet-name>StatistiekServlet</servlet-name>
<servlet-class>StatistiekServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>StatistiekServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
I always have this problem with Servlets. Is there any way to use CSS (and similar things...) with Servlets without too much trouble (like, changing some configuration settings)?
Thanks!