Change Notes item #419301, was updated on 2001-04-26 14:32
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=381174&aid=419301&group_id=22866

Category: None
Group: None
Status: Open
Priority: 5
Submitted By: Peter Antman (pra)
Assigned to: Nobody/Anonymous (nobody)
Summary: JMS Connector resource adapter

Initial Comment:
A JMS Connector resource adapter has been added to the
JBoss
main trunk, under the package org.jboss.jms.ra.

A new JMSProviderAdapter has also been added to support
JMS ra with local transactions: JBossLocalTXProvider.

The adapter is installed into dist/deploy/lib and an
entry for a TX version have been added to jboss.jcml. I
have left configuration for a LocalTransaction out of
the default configuration, which will insted be
documented in the JBoss docu.

It is (probably) possible to get the ra to work also in
JBoss 2.2.1, but it will not be added to that trunc in
the CVS.

The connector makes it possible to use JMS in beans as
is specifyed in J2EE 1.3, namely as a truly transacted
resource.

It also makes it possible to deploy the Publisher
example for the SUN JMS tutorial, with a jboss.xml file
like this:

<?xml version="1.0" encoding="Cp1252"?>

<jboss>
     <secure>false</secure>
      <resource-managers>
        <resource-manager>
          <res-name>topicfactoryref</res-name>
          <res-jndi-name>java:/JmsXA</res-jndi-name>
        </resource-manager>
        <resource-manager>
          <res-name>topicref</res-name>
         
<res-jndi-name>topic/testTopic</res-jndi-name>
        </resource-manager>
    </resource-managers>

     <enterprise-beans>
       <session>
         <ejb-name>Publisher</ejb-name>
         <jndi-name>publisher</jndi-name>
         <configuration-name>Standard Stateless
SessionBean</configuration-name>
          <resource-ref>
          
<res-ref-name>jms/MyTopicConnectionFactory</res-ref-name>
          
<resource-name>topicfactoryref</resource-name>
         </resource-ref>
         <resource-ref>
           <res-ref-name>jms/TopicName</res-ref-name>
           <resource-name>topicref</resource-name>
         </resource-ref>
       </session>
     </enterprise-beans>
</jboss>

----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=381174&aid=419301&group_id=22866

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

Reply via email to