Hi,
I am using eclipse and
Jboss. and developing an application from this tutorial
http://www.devx.com/Java/Article/21065/0/page/7. When i submit a form i get this error. HTTP Status 404 - /stock/stockselect.do
here is what my struts-config.xml looks like:
<action-mappings>
<action path="/stockselect"
type="lum.stock.action.StockAction"
name="stockDynaValidateForm"
validate="true"
scope="request">
<forward name="success" path="/pages/stockquery.jsp"/>
<forward name="failure" path="/pages/stockquery.jsp"/>
</action>
</action-mappings>
Is thre any thing else my struts-config xml is missing ?
Thanks