Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dumb relative path question

Status
Not open for further replies.

MalCarne

Technical User
Apr 1, 2005
70
US
I'm trying to access a servlet in my jsp using
<jsp:forward/>. The structure that I'm using is based off of this article:
So, I put the relative path to the servlet in the jsp tag and consistently get a 404 error when trying to access it.

Entire code of page:
Code:
<jsp:useBean id="form" class="user.getEmployeeFormData" scope="request">
        <jsp:setProperty name="form" property="*" />
</jsp:useBean>
<jsp:forward page="user/DBEmployeeUpdate" />

The jsp is in the default /web directory and the class resides in /web/WEB-INF/classes/user/ directory.
My question is: how in the #$#@! do I get this servlet to load? Should be simple, but as per usual, it's far from it.

Thanks in advance.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top