In ejb3-interceptors-aop.xml replace in the element, replace:
| <bind pointcut="!execution(* *->create()) AND !execution(* *->start()) AND !execution(*->new(..))"> | <interceptor-ref name="org.jboss.ejb3.security.AuthenticationInterceptorFactory"/> | </bind> | with | <bind pointcut="!execution(* *->create()) AND !execution(* *->start()) AND execution(* *->stop()) AND !execution(* *->destroy()) AND !execution(*->new(..))"> | <interceptor-ref name="org.jboss.ejb3.security.AuthenticationInterceptorFactory"/> | </bind> | and you should be all set. I've opened a JIRA task: http://jira.jboss.com/jira/browse/EJBTHREE-627 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3951185#3951185 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3951185 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
