JSP and Servlet using Tomcat

Reply

Join Date: Feb 2008
Posts: 2
Reputation: gheibia is an unknown quantity at this point 
Solved Threads: 0
gheibia gheibia is offline Offline
Newbie Poster

JSP and Servlet using Tomcat

 
0
  #1
Feb 11th, 2008
Hi,

I'm quite new to Jsp.
The web server is Tomcat 6 and I have a Jsp page that uses a servlet as following code shows.

<form name='uploadSO' method='post' encType='multipart/form-data' action='UploadUnConfirmedSOServlet' >
<table width .....

The Jsp page is located under a folder called "Shipper" under my application's root directory:
So it's something like this:

c:\Tomcat 6.0\webapps\myapp\shipper\myfile.jsp

The servlet (UploadUnConfirmedSOServlet) is located somewhere under the WEB-INF folder as following shows:
c:\Tomcat 6.0\webapps\myapp\WEB-INF\classes\myco\myapp\shipper\servlet

when I submit the form in the Jsp page, I get the error "The requested resource (/myapp/shipper/UploadUnConfirmedSOServlet) is not available".

I have also configuered the web.xml which is located under the WEB-INF folder and added the following sections:

<servlet>
      	<servlet-name>UploadUnConfirmedSOServlet</servlet-name>
      	<servlet-class>myco.myapp.shipper.servlet.UploadUnConfirmedSOServlet</servlet-class>
      </servlet>
      <servlet-mapping>
        <servlet-name>UploadUnConfirmedSOServlet</servlet-name>
        <url-pattern>UploadUnConfirmedSOServlet</url-pattern>
      </servlet-mapping>

I appreciate any help on this.
Reply With Quote Quick reply to this message  
Join Date: Jun 2006
Posts: 7,609
Reputation: ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of 
Solved Threads: 464
Super Moderator
Featured Poster
~s.o.s~'s Avatar
~s.o.s~ ~s.o.s~ is offline Offline
Failure as a human

Re: JSP and Servlet using Tomcat

 
0
  #2
Feb 11th, 2008
This is because you have specified a relative URL and with you currently in the "shipper" context, it's trying to find "UploadUnconfirmedSOServlet" in that context. What you can do here is either make use of absolute URL's or adjust your relative URL to suit your needs. Something like:

  1. <form name='uploadSO' method='post' action='../UploadUnConfirmedSOServlet'>
  2. <!-- making use of relative URL -->
  3. </form>
  4.  
  5. <form name='uploadSO' method='post' action='/myapp/UploadUnConfirmedSOServlet'>
  6. <!-- making use of absolute URL -->
  7. </form>
I don't accept change; I don't deserve to live.
Reply With Quote Quick reply to this message  
Join Date: Feb 2008
Posts: 2
Reputation: gheibia is an unknown quantity at this point 
Solved Threads: 0
gheibia gheibia is offline Offline
Newbie Poster

Re: JSP and Servlet using Tomcat

 
0
  #3
Feb 11th, 2008
Thanks ~s.o.s~... I'll give it a try...
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC