[RESOLVIDO] - Eclipse Ganymede + JBoss + EJB 3

Pessoal estou com um problema na hora de executar meu EJB.

MINHA ACTION

[code]
public 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");	
           
}

}[/code]