HTTP 404 Requested resource is not available
Hi,
I am creating my application in struts.I want to get data from jsp page and then need to store it into MySQL database.
when I click on submit button of jsp page I get the following error.
------------------------------------------------------------
HTTP status 404 - /jobdetails
type Status report
message /jobdetails
description The requested resource (/jobdetails) is not available.
------------------------------------------------------------------
this is in JSP page..
<form method="POST" action="/jobdetails" name="jobActionForm" type="com.myapp.struts.JobActionForm">
this is in Struts-config.xml
<action name="jobActionForm"
type="com.myapp.struts.JobAction" validate="true"
input="/jobshedule.jsp" scope="session" path="/jobdetails">
-------------------------------------------------------------------
Can anybody please help me?
Thanks in advance..:)
|