aspose file tools
The moose likes Servlets and the fly likes How to use Relative path for a servlet (Using Tomcat server) Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "How to use Relative path for a servlet (Using Tomcat server)" Watch "How to use Relative path for a servlet (Using Tomcat server)" New topic
Author

How to use Relative path for a servlet (Using Tomcat server)

H S Kumar
Greenhorn

Joined: Jun 08, 2011
Posts: 10
I am new to servlets.

I am trying to call my servlet from a HTML form. I dont want to use full url in action tag that will point to my servlet. I want to use relative path.

I am using tomcat 6 web server. If I am giving relative path in Action tag of HTML form, it is searching in C:\myApp\Servlet.

Please help me how I can use relative path in Tomcat server. If these is any other setting needs to be done for my application folder for relative path.


Thanks in advance.
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56179
    
  13

There is nothing Tomcat specific about this.

Your URLs should be server-relative and never page-relative. That is, they should start wit the the context path. See the JspFaq for details.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
H S Kumar
Greenhorn

Joined: Jun 08, 2011
Posts: 10
Bear Bibeault wrote:There is nothing Tomcat specific about this.

Your URLs should be server-relative and never page-relative. That is, they should start wit the the context path. See the JspFaq for details.


It would be helpful if you can give an example HTML form calling a servlet.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: How to use Relative path for a servlet (Using Tomcat server)
 
Similar Threads
CSS is not coming into effect
specifiying URI
problem in form action tag
server to server call
servlet beginner confused