Hi,
I have been trying to run
Struts 2 a simple helloworld program it is not working.
It is showing
The requested resource (/Example1/index.jsp) is not available.
And the following is from log file
Below is my struts.xml file
<?xml verion="1.0" ?>
<struts>
<package name="default" extends="struts-default">
<action name="Helloworld" class="App.Helloworld">
<result name="SUCCESS">/success.jsp</result>
</action>
</package>
</struts>
Thanks.