I'm writing a test application using struts2. In this app I set a context-root in weblogic.xml file:
<context-root>/myapp/test/exec</context-root>
And now I tried to access an action with following link:
http://localhost:8081/myapp/test/exec/myAction.action
I get Error 404--Not Found - The server has not found anything matching the Request-URI
My struts.xml is
<package extends="struts-default" namespace="/" name="common">
<action name="myAction" class="com.test.MyAction">
<result>pages/js/welcome.jsp</result>
</action>
</package>