I have just setup the ejb interceptor to use for my application but I am 
getting this error which i cant solve

net.sourceforge.stripes.exception.StripesRuntimeException: Exception while 
trying to lookup and inject an EJB bean into a bean of type RegisterAction 
using method public void 
com.recipes.web.events.RegisterAction.setRegistration(com.recipes.core.services.RegistrationLocal)
        
com.recipes.stripes.integrators.ejb.EJBInterceptor.intercept(EJBInterceptor.java:107)
        
net.sourceforge.stripes.controller.ExecutionContext.proceed(ExecutionContext.java:155)
        
org.stripesstuff.plugin.session.SessionStoreInterceptor.intercept(SessionStoreInterceptor.java:52)
        
net.sourceforge.stripes.controller.ExecutionContext.proceed(ExecutionContext.java:155)
        
net.sourceforge.stripes.controller.BeforeAfterMethodInterceptor.intercept(BeforeAfterMethodInterceptor.java:113)
        
net.sourceforge.stripes.controller.ExecutionContext.proceed(ExecutionContext.java:155)
        
net.sourceforge.stripes.controller.ExecutionContext.wrap(ExecutionContext.java:74)
        
net.sourceforge.stripes.controller.DispatcherHelper.resolveActionBean(DispatcherHelper.java:102)
        
net.sourceforge.stripes.controller.DispatcherServlet.resolveActionBean(DispatcherServlet.java:245)
        
net.sourceforge.stripes.controller.DispatcherServlet.doPost(DispatcherServlet.java:148)
        
net.sourceforge.stripes.controller.DispatcherServlet.doGet(DispatcherServlet.java:67)
        javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
        
net.sourceforge.stripes.controller.StripesFilter.doFilter(StripesFilter.java:246)
        
net.sourceforge.stripes.controller.StripesFilter.doFilter(StripesFilter.java:246)
        
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)this
 is my action bean

  private Members member;
  
  @EJBBean("Recipes/RegistrationBean/local")
  private RegistrationLocal registration;
  
  
  @DefaultHandler
  public Resolution doRegister(){
    return new ForwardResolution("/pure/register.jsp");
  }

  public RegistrationLocal getRegistration() {
    return registration;
  }

  @EJBBean("Recipes/RegistrationBean/local")
  public void setRegistration(com.recipes.core.services.RegistrationLocal 
registration) {
    this.registration = registration;
  }

any help will be appreciated



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to