Resource is not avalible(404 Error)
Im new to Struts, I created my home page in that i given
<html:form action="login">
and i given in struts-config.xml as
<form-beans>
<form-bean name="loginForm" type="webapp.LoginForm"/>
</form-beans>
<global-forwards>
<forward name="login" path="/login.do"/>
</global-forwards>
<action-mappings>
<action path="/login" type="webapp.loginAction" name="loginForm" input="/welcomeStruts.jsp">
<forward name="success" path="/Display.jsp"/>
<forward name="failure" path="/welcomeStruts.jsp"/>
</action>
when im deployed n running this proj in tomcat5.5 as
http:localhost:8080/webApplication/welcomeStruts.jsp
im getting the problem as
resourse not found

