[jboss-cvs] JBoss Messaging SVN: r2021 - trunk/src/etc.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jan 23 04:43:51 EST 2007


Author: ovidiu.feodorov at jboss.com
Date: 2007-01-23 04:43:51 -0500 (Tue, 23 Jan 2007)
New Revision: 2021

Modified:
   trunk/src/etc/aop-messaging-client.xml
Log:
restoring ClientLogInterceptor and ExceptionInterceptor. Eventually, they need to be combined

Modified: trunk/src/etc/aop-messaging-client.xml
===================================================================
--- trunk/src/etc/aop-messaging-client.xml	2007-01-23 09:43:15 UTC (rev 2020)
+++ trunk/src/etc/aop-messaging-client.xml	2007-01-23 09:43:51 UTC (rev 2021)
@@ -24,12 +24,10 @@
        Clustered ConnectionFactory Stack
    -->
 
-   <!-- By default no exception interceptor 
    <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientClusteredConnectionFactoryDelegate->$implementing{org.jboss.jms.delegate.ConnectionFactoryDelegate}(..))">
       <interceptor-ref name="org.jboss.jms.client.container.ClientLogInterceptor"/>
       <interceptor-ref name="org.jboss.jms.client.container.ExceptionInterceptor"/>
    </bind>
-   -->
    <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientClusteredConnectionFactoryDelegate->createConnectionDelegate(..))">
       <advice name="handleCreateConnectionDelegate" aspect="org.jboss.jms.client.container.ClusteringAspect"/>
    </bind>
@@ -38,12 +36,10 @@
         (Non-clustered) ConnectionFactory Stack
    -->
 
-   <!-- By default no client log or exception interceptor
    <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientConnectionFactoryDelegate->$implementing{org.jboss.jms.delegate.ConnectionFactoryDelegate}(..))">
       <interceptor-ref name="org.jboss.jms.client.container.ClientLogInterceptor"/>
       <interceptor-ref name="org.jboss.jms.client.container.ExceptionInterceptor"/>
    </bind>   
-   -->
    <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientConnectionFactoryDelegate->createConnectionDelegate(..))">
       <advice name="handleCreateConnectionDelegate" aspect="org.jboss.jms.client.container.StateCreationAspect"/>
    </bind>
@@ -53,9 +49,9 @@
    -->
 
    <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientConnectionDelegate->$implementing{org.jboss.jms.delegate.ConnectionDelegate}(..))">
-      <!-- <interceptor-ref name="org.jboss.jms.client.container.ClientLogInterceptor"/> -->
+      <interceptor-ref name="org.jboss.jms.client.container.ClientLogInterceptor"/>
       <interceptor-ref name="org.jboss.jms.client.container.FailoverValveInterceptor"/>
-      <!-- <interceptor-ref name="org.jboss.jms.client.container.ExceptionInterceptor"/> -->
+      <interceptor-ref name="org.jboss.jms.client.container.ExceptionInterceptor"/>
       <interceptor-ref name="org.jboss.jms.client.container.ClosedInterceptor"/>               
    </bind>  
     <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientConnectionDelegate->start())">
@@ -103,9 +99,9 @@
    -->
 
    <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientSessionDelegate->$implementing{org.jboss.jms.delegate.SessionDelegate}(..))">
-      <!-- <interceptor-ref name="org.jboss.jms.client.container.ClientLogInterceptor"/> -->
+      <interceptor-ref name="org.jboss.jms.client.container.ClientLogInterceptor"/>
       <interceptor-ref name="org.jboss.jms.client.container.FailoverValveInterceptor"/>
-      <!-- <interceptor-ref name="org.jboss.jms.client.container.ExceptionInterceptor"/> -->
+      <interceptor-ref name="org.jboss.jms.client.container.ExceptionInterceptor"/>
       <interceptor-ref name="org.jboss.jms.client.container.ClosedInterceptor"/>       
    </bind>
    <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientSessionDelegate->createMessage())">
@@ -201,9 +197,9 @@
    -->
 
    <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientConsumerDelegate->$implementing{org.jboss.jms.delegate.ConsumerDelegate}(..))">
-      <!-- <interceptor-ref name="org.jboss.jms.client.container.ClientLogInterceptor"/> -->
+      <interceptor-ref name="org.jboss.jms.client.container.ClientLogInterceptor"/>
       <interceptor-ref name="org.jboss.jms.client.container.FailoverValveInterceptor"/>
-      <!-- <interceptor-ref name="org.jboss.jms.client.container.ExceptionInterceptor"/> -->
+      <interceptor-ref name="org.jboss.jms.client.container.ExceptionInterceptor"/>
       <interceptor-ref name="org.jboss.jms.client.container.ClosedInterceptor"/>          
    </bind>       
    <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientConsumerDelegate->getMessageListener())">
@@ -236,9 +232,9 @@
         Producer Stack
    -->   
    <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientProducerDelegate->$implementing{org.jboss.jms.delegate.ProducerDelegate}(..))">
-      <!-- <interceptor-ref name="org.jboss.jms.client.container.ClientLogInterceptor"/> -->
+      <interceptor-ref name="org.jboss.jms.client.container.ClientLogInterceptor"/>
       <interceptor-ref name="org.jboss.jms.client.container.FailoverValveInterceptor"/>
-      <!-- <interceptor-ref name="org.jboss.jms.client.container.ExceptionInterceptor"/> -->
+      <interceptor-ref name="org.jboss.jms.client.container.ExceptionInterceptor"/>
       <interceptor-ref name="org.jboss.jms.client.container.ClosedInterceptor"/>  
    </bind>        
    <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientProducerDelegate->getDeliveryMode())">
@@ -291,9 +287,9 @@
         Browser Stack
    -->
    <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientBrowserDelegate->$implementing{org.jboss.jms.delegate.BrowserDelegate}(..))">
-      <!-- <interceptor-ref name="org.jboss.jms.client.container.ClientLogInterceptor"/> -->
+      <interceptor-ref name="org.jboss.jms.client.container.ClientLogInterceptor"/>
       <interceptor-ref name="org.jboss.jms.client.container.FailoverValveInterceptor"/>
-      <!-- <interceptor-ref name="org.jboss.jms.client.container.ExceptionInterceptor"/> --> 
+      <interceptor-ref name="org.jboss.jms.client.container.ExceptionInterceptor"/>
       <interceptor-ref name="org.jboss.jms.client.container.ClosedInterceptor"/>
    </bind>      
    <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientBrowserDelegate->nextMessage())">




More information about the jboss-cvs-commits mailing list