<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    How do you use @Resource to connect to remote JMS queues
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/kristjan.steinar">Kristjan Gudbjornsson</a> in <i>JBoss Messaging</i> - <a href="http://community.jboss.org/message/608087#608087">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hi, I am looking for a way to inject remote queues into my code in a similar way as is done with connection factories.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>My environment:</p><p>JBoss 5.1 EAP in two clusters</p><p> - A messaging cluster that runs JBoss Messaging 1.4.7.GA</p><p> - An application cluster, that connects to the remote JMS on the messaging cluster. JBoss Messaging has been removed in the application cluster, and a remote JMS provider added.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>The problem is the mapped name in the queue injection, a remote jndi lookup is needed to inject the queue.</p><p>My resource injection looks like this:</p><pre class="jive-pre"><code class="jive-code">
@Resource(mappedName="jnp://localhost:1199/jms/jb.itu.tes.jms.test.queue.b")
Destination jmdest;
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>We have four different environments, Development, Test, Staging and Production.&#160; And that requires different host:port configuration for each environment, because each environment has its own messaging cluster.</p><p>Is there a way to do the queue lookup in a similar way to the connection factory lookup?&#160; How do you inject remote resources in your code?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Here is the application cluster JMS configuration</p><pre class="jive-pre"><code class="jive-code jive-xml">
<span class="jive-xml-tag">&lt;mbean code="org.jboss.jms.jndi.JMSProviderLoader"
&#160;&#160;&#160;&#160; name="jboss.messaging:service=JMSProviderLoader,name=RemoteJMSProvider"&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;attribute name="ProviderName"&gt;</span>RemoteJMSProvider<span class="jive-xml-tag">&lt;/attribute&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;attribute name="ProviderAdapterClass"&gt;</span>
&#160;&#160;&#160;&#160;&#160; org.jboss.jms.jndi.JNDIProviderAdapter
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/attribute&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-comment">&lt;!-- The combined connection factory --&gt;
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;attribute name="FactoryRef"&gt;</span>XAConnectionFactory<span class="jive-xml-tag">&lt;/attribute&gt;</span>
&#160;&#160;&#160; &lt;!-- The queue connection factory --&gt;
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;attribute name="QueueFactoryRef"&gt;</span>XAConnectionFactory<span class="jive-xml-tag">&lt;/attribute&gt;</span>
&#160;&#160;&#160; &lt;!-- The topic factory --&gt;
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;attribute name="TopicFactoryRef"&gt;</span>XAConnectionFactory<span class="jive-xml-tag">&lt;/attribute&gt;</span>
&#160;&#160;&#160; &lt;!-- Access JMS via HAJNDI --&gt;
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;attribute name="Properties"&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160; java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
&#160;&#160;&#160;&#160;&#160;&#160; java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
&#160;&#160;&#160;&#160;&#160;&#160; jnp.disableDiscovery=false
&#160;&#160;&#160;&#160;&#160;&#160; jnp.partitionName=DocsPartitionCluster
&#160;&#160;&#160;&#160;&#160;&#160; jnp.discoveryGroup=239.255.100.101
&#160;&#160;&#160;&#160;&#160;&#160; jnp.discoveryPort=1102
&#160;&#160;&#160;&#160;&#160;&#160; jnp.discoveryTTL=16
&#160;&#160;&#160;&#160;&#160;&#160; jnp.discoveryTimeout=5000
&#160;&#160;&#160;&#160;&#160;&#160; jnp.maxRetries=1
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/attribute&gt;</span>
<span class="jive-xml-tag">&lt;/mbean&gt;</span>

&lt;!-- JMS XA Resource adapter, use this to get transacted JMS in beans --&gt;</span>
<span class="jive-xml-tag">&lt;tx-connection-factory&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jndi-name&gt;</span>RemoteJmsXA<span class="jive-xml-tag">&lt;/jndi-name&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;xa-transaction/&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;rar-name&gt;</span>jms-ra.rar<span class="jive-xml-tag">&lt;/rar-name&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;connection-definition&gt;</span>org.jboss.resource.adapter.jms.JmsConnectionFactory<span class="jive-xml-tag">&lt;/connection-definition&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;config-property name="SessionDefaultType" type="java.lang.String"&gt;</span>javax.jms.Topic<span class="jive-xml-tag">&lt;/config-property&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;config-property name="JmsProviderAdapterJNDI" type="java.lang.String"&gt;</span>java:/RemoteJMSProvider<span class="jive-xml-tag">&lt;/config-property&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;max-pool-size&gt;</span>20<span class="jive-xml-tag">&lt;/max-pool-size&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;config-property name="UserName" type="java.lang.String"&gt;</span>guest<span class="jive-xml-tag">&lt;/config-property&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;config-property name="Password" type="java.lang.String"&gt;</span>guest<span class="jive-xml-tag">&lt;/config-property&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;security-domain-and-application&gt;</span>RemoteJmsXARealm<span class="jive-xml-tag">&lt;/security-domain-and-application&gt;</span>
<span class="jive-xml-tag">&lt;/tx-connection-factory&gt;</span>
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/608087#608087">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in JBoss Messaging at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2042">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>