You can exit your buildNormalContext method without doing anything by
setting a flag in the request.
Put the following line in your action:
rundata.getRequest().setAttribute("skip_normal", new Boolean(true));
And put the following at the start of buildNormalContext:
Boolean reqVal = (Boolean)
rundata.getRequest().getAttribute("skip_normal");
If ((reqVal != null) && (reqVal.booleanValue() == true)) {
return;
}
-- Michael
On 5/6/04 8:06 AM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> Hi.
> Please, I need help or at least, some kind of information.
> How can avoid the call to buildNormalContext method??? I mean, I need to
> execute another method in the action (which is executed), but always, and
> after the call to my own method, the buildNormalContext is called again.
>
> Please, help!!
>
> Thank you!!
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]