0 Replies Latest reply on Jul 31, 2006 10:33 AM by kirdat_kishore

    Configuring interceptors for stateless session beans

    kirdat_kishore

      As I understand the ejb3-interceptors-aop.xml defines the set of interceptors for ejb3. I would like to understand what functionality does each one of them provide. Also, is it possible to disable any interceptors by simply removing them from the element list under element?

      For ex. I have following fragment in my ejb3-interceptors-aop.xml.



      <aop>
      .
      .
      <domain name="Stateless Bean">
       <bind pointcut="execution(public * *->*(..))">
       <interceptor-ref name="org.jboss.ejb3.asynchronous.AsynchronousInterceptor"/>
       <interceptor-ref name="org.jboss.ejb3.ENCPropagationInterceptor"/>
       <interceptor-ref name="org.jboss.ejb3.security.AuthenticationInterceptorFactory"/>
       </bind>
      ...
      </domain>
      ....
      </aop>
      

      Can I remove AsynchronousInterceptor simply by commenting out that entry?