2 Replies Latest reply on Apr 8, 2005 2:43 PM by cjudd

    Is JBoss 4.0.1sp1 using JMS 1.1?

    cjudd

      I thought JBoss 4.0.1sp1 implemented the J2EE 1.4 spec. According to the J2EE 1.4 spec, JMS 1.1 is required. But when I look at the classes in the jbossall-client.jar and the jboss-j2ee.jar files, I don't see JMS 1.1 methods on the classes. For example, the ConnectionFactory interfaces does not contain createConnection() or createConnection(String userName, String password).

        • 1. Re: Is JBoss 4.0.1sp1 using JMS 1.1?

          Don't pass go, don't collect $200....

          [ejort@htimes2 temp]$ cd jboss-4.0.1sp1/client/
          [ejort@htimes2 client]$ javap -classpath jboss-j2ee.jar javax.jms.ConnectionFactory
          Compiled from "ConnectionFactory.java"
          interface javax.jms.ConnectionFactory{
           public abstract javax.jms.Connection createConnection();
           throws javax/jms/JMSException
           public abstract javax.jms.Connection createConnection(java.lang.String,java.lang.String);
           throws javax/jms/JMSException
          }
          
          [ejort@htimes2 client]$ javap -classpath jbossall-client.jar javax.jms.ConnectionFactory
          Compiled from "ConnectionFactory.java"
          interface javax.jms.ConnectionFactory{
           public abstract javax.jms.Connection createConnection();
           throws javax/jms/JMSException
           public abstract javax.jms.Connection createConnection(java.lang.String,java.lang.String);
           throws javax/jms/JMSException
          }
          


          • 2. Re: Is JBoss 4.0.1sp1 using JMS 1.1?
            cjudd

            Woops. I did not notice the path was to my JBoss 3.2.3 installation. Thanks for the wake up call.