SuperMoonster
Programmer
Hello everyone. I'm getting the following error:
It gives me nothing else. No stack, no line number, no clue.
Here's my action:
As you can see, it's just a relayaction. I do smart forwarding with it.
Here's my struts-config:
It seems to be all correct. Where could this error be coming from? I got this error several times and all times I solved this quickly and easily, but not now
I'm kinda stuck here so I'd appreciate any help. Thanks
Code:
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:
Code:
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:
Code:
<action path="/DeterminaColecao"
type="auge.action.determinaAction"
name="addColecaoForm"
scope="request"
validate="true"
input="/pages/colecao.jsp">
<forward name="add" path="/AddColecao.do"/>
<forward name="del" path="/DelColecao.do"/>
<forward name="upd" path="/UpdColecao.do"/>
</action>
I'm kinda stuck here so I'd appreciate any help. Thanks