The only thing i can think of that wouldnt be setup properly is the Web.xml file in WEB-INF (for what i understand it is supposed to make the app available at http://localhost:8080/ViClientWebApp/TestServlet :
<?xml version="1.0" encoding="ISO-8859-1"?> <Web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5"> <display-name>VI Client Plugin Demo App</display-name> <description> VI Client Plugin Demo App with Tomcat and VI Java API</description> <servlet> <servlet-name>TestServlet</servlet-name> <servlet-class>TestServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>TestServlet</servlet-name> <url-pattern>/TestServlet</url-pattern> </servlet-mapping> </Web-app> 2009/7/16 Thomas Vite <activedirl...@gmail.com> > The real case is : C:\Program Files\Apache Software Foundation\Tomcat > 6.0\webapps\ViClientWebApp > > 2009/7/16 Mark Thomas <ma...@apache.org> > >> Thomas Vite wrote: >> >> > Yeah but after restarting Tomcat i still receive that infamous: >> > HTTP Status 404 - /ViClientWebApp/TestServlet >> > ------------------------------ >> > >> > *type* Status report >> > >> > *message* */ViClientWebApp/TestServlet* >> > >> > *description* *The requested resource (/ViClientWebApp/TestServlet) is >> not >> > available.* >> > I have renamed the project ViClientWebApp which now look like this: >> > C:\PROGRAM FILES\APACHE SOFTWARE FOUNDATION\TOMCAT >> > 6.0\WEBAPPS\VICLIENTWEBAPP >> >> What is the real case of this directory? Tomcat is case sensitive even >> if Windows isn't. >> >> Mark >> >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org >> For additional commands, e-mail: users-h...@tomcat.apache.org >> >> >