Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

No action instance for path /Action could be created

Status
Not open for further replies.

SuperMoonster

Programmer
Aug 11, 2005
59
BR
Hello everyone. I'm getting the following error:
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>
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top