aspose file tools
The moose likes Tomcat and the fly likes Regn of servlets in Tomcat. Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Products » Tomcat
Reply Bookmark "Regn of servlets in Tomcat." Watch "Regn of servlets in Tomcat." New topic
Author

Regn of servlets in Tomcat.

Thillai Sakthi
Ranch Hand

Joined: Jun 17, 2000
Posts: 91
Hi All:
Do I have to register (in web.xml) ALL the servlets I use in a application?
Can I use even without registering the same?
TIA


Regards,<br /> <br />Shakthi
Anand Jayaraman
Ranch Hand

Joined: Jan 28, 2004
Posts: 104
Hi,
If you don't want to mention the servlets in the web.xml file, you will have to call the servlet from the browser by its fully qualified name.
In simpler terms, you actually map the servlet class name (say for eg: JavaRanchServlet) with a name (say, JavaRanch) in the deployment descriptor so that your servlet can be called by its mapped-name(i.e JavaRanch). However, if you don't use the deployment descriptor you will have to call the servlet as JavaRanchServlet.
William Brogden
Author and all-around good cowpoke
Rancher

Joined: Mar 22, 2000
Posts: 12324
    
    1
You can execute non-registered servlets by name ONLY if the invoker servlet is turned on. If you have any serious use of servlets in mind, go ahead and learn how to properly set up web.xml. You will be glad you did.
See the JavaRanch collected wisdom on invoker.
Bill


Java Resources at www.wbrogden.com
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Regn of servlets in Tomcat.
 
Similar Threads
static variable in a servlet
Delete parameters in a Request object
where is servlet System.out output?
ServletContext doubt ?
return an object from servlet