Advertisement
|
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002.
If you wish to participate in discussions, please visit the new
Artima Forums.
Message:
An Example of servlet URL...
Posted by Kishori Sharan on December 12, 2000 at 4:45 PM
Your URL will look like http://host/servlet/your_servlet_name The word servlet will be as it is after host/. Suppose you have created a servlet Si.java and compiled it then your URL will be http://host/servlet/Si In the above case I have assumed you haven't put your servlet Si.java in any package. If you put your servlet in a package then you can add the full path and a name which you will be using for your servlet in URL using administration tools of JavaWebserver. Thanx Kishori
Replies:
- help lili August 24, 2001 at 3:24 PM
(1)
- q q April 25, 2001 at 2:33 PM
(0)
- a a April 25, 2001 at 2:10 PM
(0)
- Still problems Si December 16, 2000 at 1:56 AM
(2)
|