Just extent the Action class directly:
public class xxxxx extends Action
{
public void doPerform(RunData data) throws Exception
{
...
}
}
Kevin
> -----Original Message-----
> From: Gopal Ramasammy-Cook [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 16, 2001 6:11 AM
> To: [EMAIL PROTECTED]
> Subject: JSP Actions - Help
>
>
> Hi
>
>
> There does not appear to be a JspAction class, so i was
> wondering how actions work with JSP.
>
> I tried using VelocityAction, and although I could pass
> control to the action (via the standard URL), I was unable to
> direct control from the action to the jsp template. The way I
> did this was:
>
> data.getTemplateInfo().getScreenTemplate("TestJsp.jsp");
>
> Unfortunately, I get a requested screen not found.
>
> Does anyone know how JSP actions work.?
>
>
> Regards
>
> Chris
>