Cannot load servlet(s)
This is very strange to me. I've never had a problem like this before. I just started using Tomcat 5.5 (I used to use older versions) and after deploying I cannot seem to access any serlvets. I took everything out except for this one servlet and reduced to my web.xml file to map the one servlet. Here are the contents of my web.xml:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
PUBLIC"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<display-name>My APP</display-name>
<description>
This is my app
</description>
<servlet>
<servlet-name>SignIn</servlet-name>
<servlet-class>SignIn</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>SignIn</servlet-name>
<url-pattern>servlet/SignIn</url-pattern>
</servlet-mapping>
</web-app>
Everything is in the right place and the jsp files load just fine, but I cannot access the SignIn servlet. I tried some of the example servlets already in Tomcat and they work just fine. I also see no difference in their web.xml files from mine.
I also never made any changes to conf/web.xml as I don't want the invoker running (I've read about security flaws when using it). Any thoughts? Thanks in advance.

