You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Dejan Bosanac (JIRA)" <ji...@apache.org> on 2010/12/02 14:09:34 UTC

[jira] Updated: (AMQ-2748) Jboss Adapter Configuration : connection-factory datasource does not overload ra.xml

     [ https://issues.apache.org/jira/browse/AMQ-2748?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dejan Bosanac updated AMQ-2748:
-------------------------------

    Fix Version/s:     (was: 5.4.2)
                   5.5.0

> Jboss Adapter Configuration : connection-factory datasource does not overload ra.xml
> ------------------------------------------------------------------------------------
>
>                 Key: AMQ-2748
>                 URL: https://issues.apache.org/jira/browse/AMQ-2748
>             Project: ActiveMQ
>          Issue Type: Bug
>          Components: Connector
>    Affects Versions: 5.3.2
>            Reporter: Marc Schöchlin
>            Priority: Critical
>             Fix For: 5.5.0
>
>
> I defined a connection-facory datasource in jboss 5.1
> {code}
> <?xml version="1.0" encoding="UTF-8"?>
> <!DOCTYPE connection-factories
>     PUBLIC "-//JBoss//DTD JBOSS JCA Config 1.5//EN"
>     "http://www.jboss.org/j2ee/dtd/jboss-ds_1_5.dtd">
> <connection-factories>
>    <tx-connection-factory>
>       <jndi-name>activemq/QueueConnectionFactory</jndi-name>
>       <xa-transaction/>
>       <track-connection-by-tx/>
>       <rar-name>activemq-rar-5.3.2.rar</rar-name>
>       <connection-definition>javax.jms.QueueConnectionFactory</connection-definition>
>       <ServerUrl>tcp://foo.bar.org:61616</ServerUrl>
>       <!--
>       <UserName>sa</UserName>
>       <Password></Password>
>       -->
>       <min-pool-size>1</min-pool-size>
>       <max-pool-size>20</max-pool-size>
>       <blocking-timeout-millis>30000</blocking-timeout-millis>
>       <idle-timeout-minutes>3</idle-timeout-minutes>
>    </tx-connection-factory>
>  ...
>  ...
> </connection-factories>
> {code}
> My message driven beans are using this factory. The default "tcp://localhost:61616", defined in activemq-ra-5.3.2.rar/META-INF/ra.xml, is not overloaded.
> {code}
> <resourceadapter>
>     <resourceadapter-class>org.apache.activemq.ra.ActiveMQResourceAdapter</resourceadapter-class>
>     <config-property>
>         <description>
>           The URL to the ActiveMQ server that you want this connection to connect to.  If using
>           an embedded broker, this value should be 'vm://localhost'.
>         </description>
>         <config-property-name>ServerUrl</config-property-name>
>         <config-property-type>java.lang.String</config-property-type>
>         <config-property-value>tcp://localhost:61616</config-property-value>
> {code}
> My application never connects to "tcp://foo.bar.org:61616" until i configure this in activemq-ra-5.3.2.rar/META-INF/ra.xml.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.