I am trying to deploy struts2 with the rest plugin onto the Google app engine...
I have copied the showcase files to a GAE project created in Eclipse. The compilation and upload works fine.
When I hit the index.jsp, which forwards me to /orders I get a 404.
When I check the logs, there is no error, just a warning (as below). The OrdersController does not have code for an INPUT result, therefore I'm thinking something isnt configured right and maybe some default struts configuration is being triggered?
Any ideas here?
com.opensymphony.xwork2.util.logging.commons.CommonsLogger warn: Could not find action or result
No result defined for action org.apache.struts2.rest.example.OrdersController and result input
at com.opensymphony.xwork2.DefaultActionInvocation.executeResult(DefaultActionInvocation.java:364)
at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:266)
at com.opensymphony.xwork2.validator.ValidationInterceptor.doIntercept(ValidationInterceptor.java:252)
at org.apache.struts2.interceptor.validation.AnnotationValidationInterceptor.doIntercept(AnnotationValidationInterceptor.java:68)
at com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:87)
at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:237)
at com.opensymphony