Java Serlet file not found
Hi,
I am new in Java servlet and tomcat.
I install the jdk1.5 and tomcat 5.5
my tomcat is running but when i call the servlet file
it tells "File not found"
I save my file here
C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps
please help me
I write
[317 byte] By [
sj1506a] at [2007-11-27 7:38:12]

read some tutorials, look at the examples, read the fine manual.It's all explained very clearly so even simpleminded people like professional programmers can understand it.
you can use this web.xml file
<?xml version="1.0" encoding="UTF-8"?>
<!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>
<servlet>
<servlet-name>dummy name </servlet-name>
<servlet-class>actual class name</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>dummyname</servlet-name>
<url-pattern>/abc</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
> > Genius. Let's just hope you can be there to hold
> the
> > guy's hand through his entire career, eh readers
>
> I don't think this posting of a web.xml file will
> help the OP since there is much more to it than just
> having a web.xml file..
true, so he'll be back next to ask about what he should put exactly where in that web.xml, where to put the file, etc. etc.