I have a JSP to enter activation data. After submitting the data to the server the following error message ist prompted from TOMCAT:
type Status report
message No action instance for path /UserActivator could be created
description The server encountered an internal error (No action instance for path /UserActivator could be created) that prevented it from fulfilling this request.
Here's my entry within the struts-config.xml file for the action-mapping:
<action path="/UserActivator"
type="com.hello.vmd.user.UserActivator"
name="ActivationForm"
scope="request"
input="/activate.jsp">
<forward name="success" path="/activate-ok.jsp"/>
<forward name="failure" path="/activate.jsp"/>
</action>
Which mistake do I do?
Thank you.
Dirk Ulrich
dirk.ulrich@gmx.de