Hi all,
I am trying to execute an Action using only a dummy form (empty). I have
successfully used this in other occasions but it seems to fail now.
In my config I have
<form-beans>
<form-bean name="closeOrderForm" type="app.CloseOrderForm" />
</form-beans>
<!-- CLOSE ORDER -->
<action path="/DoCloseOrder" type="app.CloseOrderAction"
name="closeOrderForm" scope="request" validate="false"
input="/DisOrderDetail.jsp">
<forward name="success" path="/FindOrder.jsp" />
</action>
<action path="/FindOrder" type="org.apache.struts.actions.ForwardAction"
parameter="/FindOrder.jsp" />
But I get this exception thrown:
java.lang.ClassCastException
at app.CloseOrderAction.execute(Unknown Source)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProces
sor.java:446)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:266)
I though it might have been the Input that messed things so i changed that
as follows with no luck.
I am getting frustrated over this, am I missing something? I would be
gratefull is somebody could give a hint on what the problem might be.
Thank you for your time,
Theo
<!-- CLOSE ORDER -->
<action path="/DoCloseOrder" type="app.CloseOrderAction"
name="closeOrderForm">
<forward name="success" path="/FindOrder.jsp" />
<forward name="exception" path="/Exception.jsp" />
</action>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]