calling servlet as hello instead of /servlet/hello ?
Hi,
I am using tomcat 4.1.31. To call a servlet which is in abc package, I have to give url as ..../servlet/hello where I have done the following in web.xml ;
<servlet>
<servlet-name>hello</servlet-name>
<servlet-class>abc.hello</servlet-class>
</servlet>
now how can I avoid the /servlet also so that I am able to access it as;
localhost/hello
instead of
localhost/servlet/hello
Thanks.

