Posted By:
Anonymous
Posted On:
Wednesday, August 24, 2005 12:25 PM
Hello everyone. I'm getting the following error: HTTP Status 500 - No action instance for path /DeterminaColecao could be created type Status report message No action instance for path /DeterminaColecao could be created description The server encountered an internal error (No action instance for path /DeterminaColecao could be created) that prevented it from fulfilling this request. Apache Tomcat/5.5.7 It gives me nothing else. No stack, no line number, no clue. Here's my action: public final class DeterminaAction extends Action { public ActionForward execute( ActionMapp
More>>
Hello everyone. I'm getting the following error:
HTTP Status 500 - No action instance for path
/DeterminaColecao could be created
type Status report
message No action instance for path /DeterminaColecao could be created
description The server encountered an internal error (No action instance for path /DeterminaColecao could be created) that prevented it from fulfilling this request.
Apache Tomcat/5.5.7
It gives me nothing else. No stack, no line number, no clue.
Here's my action:
public final class DeterminaAction extends Action {
public ActionForward execute(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response) throws IOException, ServletException {
return mapping.findForward(request.getParameter(Tokens.DISPATCH));
}
}
As you can see, it's just a relayaction. I do smart forwarding with it.
Here's my struts-config:
type="auge.action.determinaAction"
name="addColecaoForm"
scope="request"
validate="true"
input="/pages/colecao.jsp">
It seems to be all correct. Where could this error be coming from? I'm kinda stuck here so I'd appreciate any help.
Thanks
<<Less