Re: How do I set a default servlet?

2003-01-10 Thread Bill Barker
| > | | 01/10/03 02:26 AM| > | | Please respond to| > | | "Tomcat Users| > | | List"| > | || > |-+> > >------------------

Re: How do I set a default servlet?

2003-01-10 Thread JStanczak
| | cc: | | Subject: Re: How do I set a default servlet? | >

Re: How do I set a default servlet?

2003-01-09 Thread Bill Barker
Setting the default servlet is really easy. You just specify: myservlet myservlet myservlet / The problem is that this is almost certainly not what you want. This will invoke 'myservlet' for any URL that doesn't match any other servlet-mapping (including static-content). It looks li

How do I set a default servlet?

2003-01-09 Thread JStanczak
I would like to setup my servlet server to point anyone that accesses the default url to be sent to a certain servlet. For example if someone typed http://localhost/ then it would take them right to http://localhost/servlet/myservlet . I'm guessing this is done through the web.xml in the conf direc