diff options
| author | Weston M. Price <wprice@apache.org> | 2013-01-04 16:03:39 +0000 |
|---|---|---|
| committer | Weston M. Price <wprice@apache.org> | 2013-01-04 16:03:39 +0000 |
| commit | 54be43ebcfb409abe311cb65af48f66d88d69cd1 (patch) | |
| tree | c71ecd2451aa6bc32ddc4e439050a234f3f21a48 /java/jca | |
| parent | ba2550e65518493aa182613181f0c4545d8e4969 (diff) | |
| download | qpid-python-54be43ebcfb409abe311cb65af48f66d88d69cd1.tar.gz | |
QPID-4491
*Minor documentation fixes for property names that have changed over
time.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1428944 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/jca')
| -rw-r--r-- | java/jca/README-JBOSS.txt | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/java/jca/README-JBOSS.txt b/java/jca/README-JBOSS.txt index 77bf91e6dd..e88643e0f2 100644 --- a/java/jca/README-JBOSS.txt +++ b/java/jca/README-JBOSS.txt @@ -61,7 +61,7 @@ XA ConnectionFactory <xa-transaction/> <rar-name>qpid-ra-<ra-version>.rar</rar-name> <connection-definition>org.apache.qpid.ra.QpidRAConnectionFactory</connection-definition> - <config-property name="connectionURL">amqp://guest:guest@/test?brokerlist='tcp://localhost:5672?sasl_mechs='ANONYMOUS''</config-property> + <config-property name="ConnectionURL">amqp://guest:guest@/test?brokerlist='tcp://localhost:5672?sasl_mechs='PLAIN''</config-property> <max-pool-size>20</max-pool-size> </tx-connection-factory> @@ -79,11 +79,11 @@ Local ConnectionFactory ======================= <tx-connection-factory> <jndi-name>QpidJMS</jndi-name> - <rar-name>qpid-ra-0.10.rar</rar-name> + <rar-name>qpid-ra-<ra-version>.rar</rar-name> <local-transaction/> - <config-property name="useLocalTx" type="java.lang.Boolean">true</config-property> - <config-property name="connectionURL">amqp://anonymous:@client/test?brokerlist='tcp://localhost:5672?sasl_mechs='ANONYMOUS''</config-property> - <connection-definition>org.apache.qpid.ra.QpidRAConnectionFactory</connection-definition> + <config-property name="UseLocalTx" type="java.lang.Boolean">true</config-property> + <config-property name="ConnectionURL">amqp://anonymous:@client/test?brokerlist='tcp://localhost:5672?sasl_mechs='PLAIN'' + </config-property> <connection-definition>org.apache.qpid.ra.QpidRAConnectionFactory</connection-definition> <max-pool-size>20</max-pool-size> </tx-connection-factory> @@ -100,11 +100,10 @@ provides two such objects <mbean code="org.jboss.resource.deployment.AdminObject" name="qpid.jca:name=HelloQueue"> <attribute name="JNDIName">Hello</attribute> - <depends optional-attribute-name="RARName">jboss.jca:service=RARDeployment,name='qpid-ra-0.10.rar'</depends> + <depends optional-attribute-name="RARName">jboss.jca:service=RARDeployment,name='qpid-ra-<ra-version>.rar'</depends> <attribute name="Type">javax.jms.Destination</attribute> <attribute name="Properties"> - destinationType=QUEUE - destinationAddress=amq.direct + DestinationAddress=amq.direct </attribute> </mbean> @@ -113,16 +112,15 @@ The above XML defines a JMS Queue which is bound into JNDI as queue/HelloQueue This destination can be retrieved from JNDI and be used for the consumption or production of messages. The desinationAddress property -can be customized for your environment. Please see the Qpid Java Client documentation for specific configuration options. +can be customized for your environment. Please see the Qpid Java Client documentation for specific configuration options. <mbean code="org.jboss.resource.deployment.AdminObject" name="qpid.jca:name=HelloTopic"> <attribute name="JNDIName">HelloTopic</attribute> - <depends optional-attribute-name="RARName">jboss.jca:service=RARDeployment,name='qpid-ra-0.10.rar'</depends> + <depends optional-attribute-name="RARName">jboss.jca:service=RARDeployment,name='qpid-ra-<ra-version>.rar'</depends> <attribute name="Type">javax.jms.Destination</attribute> <attribute name="Properties"> - destinationType=TOPIC - destinationAddress=amq.topic + DestinationAddress=amq.topic </attribute> </mbean> @@ -138,10 +136,10 @@ can be customized for your environment. Please see the Qpid Java Client document <mbean code="org.jboss.resource.deployment.AdminObject" name="qpid.jca:name=QpidConnectionFactory"> <attribute name="JNDIName">QpidConnectionFactory</attribute> - <depends optional-attribute-name="RARName">jboss.jca:service=RARDeployment,name='qpid-ra-0.10.rar'</depends> + <depends optional-attribute-name="RARName">jboss.jca:service=RARDeployment,name='qpid-ra-<ra-version>.rar'</depends> <attribute name="Type">javax.jms.ConnectionFactory</attribute> <attribute name="Properties"> - connectionURL=amqp://anonymous:@client/test?brokerlist='tcp://localhost:5672?sasl_mechs='ANONYMOUS'' + ConnectionURL=amqp://anonymous:@client/test?brokerlist='tcp://localhost:5672?sasl_mechs='PLAIN'' </attribute> </mbean> |
