1 2 3 Previous Next 30 Replies Latest reply on Sep 29, 2011 10:55 AM by dstockdreher Go to original post
      • 30. Re: Creating resources for a resource adapter
        dstockdreher

        That makes complete sense. That was my mistake.

        For anyone's future reference.  The winning subsystem config is below.

         

            <subsystem xmlns="urn:jboss:domain:resource-adapters:1.0">
                <resource-adapters>
                    <resource-adapter>
                        <archive>
                            wmq.jmsra.rar
                        </archive>
                        <connection-definitions>
                            <connection-definition class-name="com.ibm.mq.connector.outbound.ManagedConnectionFactoryImpl" jndi-name="java:jboss/eis/ccdbMQCF" pool-name="ccdbConnectionFactory">
                                <config-property name="port">
                                    21414
                                </config-property>
                                <config-property name="hostName">
                                    89HFZK1.corp.mycomp.com
                                </config-property>
                                <config-property name="channel">
                                    TO_QM_89HFZK1
                                </config-property>
                                <config-property name="transportType">
                                    CLIENT
                                </config-property>
                                <config-property name="queueManager">
                                    QM_89HFZK1
                                </config-property>
                                <pool>
                                    <min-pool-size>
                                        1
                                    </min-pool-size>
                                    <max-pool-size>
                                        10
                                    </max-pool-size>
                                </pool>
                                <security>
                                    <application>
                                        true
                                    </application>
                                </security>
                            </connection-definition>
                        </connection-definitions>
                    </resource-adapter>
                </resource-adapters>
            </subsystem>

         

         

        Now on to getting a working MDB set up.

        1 2 3 Previous Next