vote up 0 vote down star

New to struts

Here is the error:

Jul 30 14:42:04 ERROR http-8080-Processor18 Dispatcher.serviceAction:512 - Could not find action or result No result defined for action com.domain.location.action.LocationAction and result input - action - file:/opt/apache-tomcat-5.5.20/webapps/location/WEB-INF/classes/struts.xml:1203:37

Here is my jsp:

<s:form id="locationForm" 
         name=" locationForm " 
         action="/location/locationEdit.action" 
         method="post" 
         theme="simple">

Here is the JSP Root:

<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" 
          xmlns:html="http://www.w3.org/1999/xhtml" 
          xmlns:s="/struts-tags" 
          xmlns:c="http://java.sun.com/jsp/jstl/core" 
          xmlns:fn="http://java.sun.com/jsp/jstl/functions" 
          version="2.0">

Here is struts.xml:

<action name="locationEdit" class="locationAction" method="locationEdit">
     <result name="success">editLocation.jsp</result>
     <result name="error">error.jsp</result>
</action>

Here is struts.xml from target folder:

<action name="locationEdit" class="locationAction" method="locationEdit">
     <result name="success">editLocation.jsp</result>
     <result name="error">error.jsp</result>
</action>

Here is the action:

public String locationEdit() {                             
     String forward = SUCCESS;
     /* Code Here  */
     return forward;
}

Any help on why this is happening and how to fix it would be great. Tried to Google it but rely nothing popped up.

--Phill

flag

What version of STRUTS? My STRUTS v1 action attributes include path, type, name and scope. Type was what tied the action in the struts-config to the actual java class, and it included the full package path with the java class reference - not like what your class attribute. – OMG Ponies Jul 31 at 3:06
Struts 2.0 is whats in struts.xml file – Phill Pafford Jul 31 at 12:14
after doing some more testing I found that some of my JSP elements are not coming through as I thought. This might be the root cause but the error I got is mis-leading. Will post back if I get anywhere – Phill Pafford Jul 31 at 12:15

1 Answer

vote up 0 vote down check

Closed, no longer an issue

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.