Okay from what I got:
Login -> Lookup
Login is an Action.
Lookup is a LookupDispatchAction.
The problem is that it is forwarding to ur LookupDispatchAction class and
not to you lookup page.
If this is wrong then stop reading ur wasting ur time and I've already
wasted mine.
So I'm assuming that your Login action class has an execute method that
looks like:
execute(....)
{
//handle login
blah...
return mapping.findForward("success");
}
like most standard struts applications and that ur success is to an action
In addition your forward is defined as such:
<forward name="success"
contextRelative="true"
path="/myLookupAction.do"
redirect="true"/>
which means that it goes to your Lookup dispatch action.
Fine. At this point you have several options one of which is the following:
replace path="/myLookupAction.do" (or whatever you have)
with path="/myLookupPage.jsp" (to go directly to ur jsp)
-Tim
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]