Hey all I recently decided to evaluate Struts2 for a big project, but am having difficulties mapping actions. I get the "There is no Action mapped..." error when I try running the blank struts2 application.
Here's my example.xml <package name="example" namespace="com/bubbleclip/web/example" extends="struts-default"> <action name="HelloWorld" class="com.bubbleclip.web.example.HelloWorld"> <result>/web/example/HelloWorld.jsp</result> </action> <action name="Login_*" method="{1}" class="com.bubbleclip.web.example.Login"> <result name="input">/example/Login.jsp</result> <result type="redirect-action">Menu</result> </action> <action name="*" class="com.bubbleclip.web.example.ExampleSupport"> <result>/example/{1}.jsp</result> </action> <!-- Add actions here --> </package> My directory tree looks like the following: application/src/com/bubbleclip/web/example/ExampleSupport.java application/src/com/bubbleclip/web/example/HelloWorld.java application/src/com/bubbleclip/web/example/Login.java application/src/com/bubbleclip/web/example/Login-validation.xml application/src/com/bubbleclip/web/example/Package.properties application/src/example.xml application/src/struts.xml application/web/index.html application/web/example/HelloWorld.jsp application/web/WEB-INF/web.xml -- View this message in context: http://www.nabble.com/There-is-no-Action-mapped-for-action-name-HelloWorld.----unknown-location--tf3362312.html#a9353654 Sent from the Struts - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]