User: chirino 
  Date: 01/06/21 22:24:31

  Modified:    src/main/org/jboss/ejb/plugins/jms JMSContainerInvoker.java
  Log:
  Updated JBoss with the latest JBossMQ which includes fixes for the
  recent threading issues.  I have alos updated the JMProviderLoader
  so that the references to the connection factory locations can be
  set via JMX.  The jboss.jcml file was updated so that MDBs uese the
  INVM IL for better performance.
  
  Revision  Changes    Path
  1.15      +3 -3      
jboss/src/main/org/jboss/ejb/plugins/jms/JMSContainerInvoker.java
  
  Index: JMSContainerInvoker.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/jms/JMSContainerInvoker.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- JMSContainerInvoker.java  2001/06/21 00:25:54     1.14
  +++ JMSContainerInvoker.java  2001/06/22 05:24:31     1.15
  @@ -58,7 +58,7 @@
    *      @author <a href="mailto:[EMAIL PROTECTED]";>Rickard Öberg</a>
    *      @author <a href="mailto:[EMAIL PROTECTED]";>Sebastien Alborini</a>
    *      @author <a href="mailto:[EMAIL PROTECTED]";>Marc Fleury</a>
  - *      @version $Revision: 1.14 $
  + *      @version $Revision: 1.15 $
    */
   public class JMSContainerInvoker implements
   ContainerInvoker, XmlLoadable
  @@ -233,7 +233,7 @@
               // All classes are different between topics and queues!!
               TopicConnectionFactory topicFactory = 
                   (TopicConnectionFactory)context.
  -                lookup(adapter.getTopicFactoryName());
  +                lookup(adapter.getTopicFactoryRef());
               // Do we have a user - this is messy code (should be done for queues to)
               TopicConnection topicConnection;
               if(user != null) 
  @@ -307,7 +307,7 @@
           {
               Logger.debug("Got destination type Queue");
               QueueConnectionFactory queueFactory = 
  -                
(QueueConnectionFactory)context.lookup(adapter.getQueueFactoryName());
  +                
(QueueConnectionFactory)context.lookup(adapter.getQueueFactoryRef());
               
               // Do we have a user
               QueueConnection queueConnection;
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to