Pessoal estou com um problema na hora de executar meu EJB.
MINHA ACTIONpublic class StartAction extends DispatchAction {
/* public ActionForward unspecified(ActionMapping mapping, ActionForm form,
HttpServletRequest request,
HttpServletResponse response) throws Exception {
System.out.println("Entrou");
return mapping.findForward("index");
}*/
public ActionForward login(ActionMapping mapping, ActionForm form,
HttpServletRequest request,
HttpServletResponse response) throws Exception {
StartDelegate startDelegate = new StartDelegate();
System.out.println("Estamos na Action>> "+startDelegate.testeDelegate());
return mapping.findForward("login");
}
}