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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Professional Struts Applications, ISBN 1861007817

Status
Not open for further replies.
Hi everyone,

This new title on "Professional Struts Applications: Building web sites with Struts, ObjectRelationalBridge, Lucene, and Velocity" acts as a roadmap to demonstrate how to use the Jakarta Struts framework to solve everyday web application development challenges.
More details are available at :
 
hi,
i am new to struts. I recd. this error message when i try to click on submit button
"The requested resource (/submit.do) is not available."

my struts-config.xml look like this
<?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>

<!DOCTYPE struts-config PUBLIC &quot;-//Apache Software Foundation//DTD Struts Configuration 1.1//EN&quot;

&quot;
<struts-config>

<data-sources/>

<form-beans>

<form-bean name=&quot;GameContextForm&quot; type=&quot;demo.GameContextForm&quot;/>

</form-beans>

<global-exceptions/>

<global-forwards>

<forward name=&quot;startGame&quot; path=&quot;/pages/init.jsp&quot;/>

</global-forwards>

<action-mappings>

<action name=&quot;GameContextForm&quot; path=&quot;/initGame&quot; scope=&quot;session&quot; type=&quot;demo.InitGameAction&quot;>

<forward name=&quot;showGame&quot; path=&quot;/pages/game.jsp&quot;/>

</action>

<action name=&quot;GameContextForm&quot; path=&quot;/makeStep&quot; scope=&quot;session&quot; type=&quot;demo.MakeStepAction&quot;>

<forward name=&quot;showGame&quot; path=&quot;/pages/game.jsp&quot;/>

</action>

</action-mappings>

<controller/>

</struts-config>
 
hi,
i am new to struts. I recd. this error message when i try to click on submit button
&quot;The requested resource (/submit.do) is not available.&quot;

my struts-config.xml look like this

<?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>

<!DOCTYPE struts-config PUBLIC &quot;-//Apache Software Foundation//DTD Struts Configuration 1.1//EN&quot;

&quot;
<struts-config>

<data-sources/>

<form-beans>

<form-bean name=&quot;loginContextForm&quot; type=&quot;Login.loginContextForm&quot;/>

</form-beans>

<global-exceptions/>

<global-forwards>

<forward name=&quot;login_page&quot; path=&quot;/jsp_pages/login_page.jsp&quot;/>

</global-forwards>

<action-mappings>

<action input=&quot;/login_page.jsp&quot; name=&quot;loginContextForm&quot; path=&quot;/submit&quot;

scope=&quot;request&quot; type=&quot;Login.loginValidator&quot;>

<forward name=&quot;false&quot; path=&quot;/jsp_page/login_page.jsp&quot;/>

<forward name=&quot;true&quot; path=&quot;/jsp_page/home_page.jsp&quot;/>

</action>

</action-mappings>

<controller/>

</struts-config>



can any one let me know why is so i am getting this error
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top