I have created a rar which seems to deploy alright (as displayed by the jmx-console). I have also created a -ds.xml file to declare my connection factory. My problem is I have no idea how to link one with the other. And how to have the JNDI name ready for my application.
This is how my ra.xml looks like <?xml version="1.0" encoding="UTF-8"?> | | <!DOCTYPE connector PUBLIC '-//Sun Microsystems, Inc.//DTD Connector 1.0//EN' 'http://java.sun.com/dtd/connector_1_0.dtd'> | | <connector> | <display-name>Map Example</display-name> | <vendor-name>Olli</vendor-name> | <spec-version>1.0</spec-version> | <eis-type>Map</eis-type> | <version>1.0</version> | <resourceadapter> | <managedconnectionfactory-class>transaction.jca.MapManagedConnectionFactory</managedconnectionfactory-class> | <connectionfactory-interface>javax.resource.cci.ConnectionFactory</connectionfactory-interface> | <connectionfactory-impl-class>transaction.jca.MapConnectionFactory</connectionfactory-impl-class> | <connection-interface>javax.resource.cci.Connection</connection-interface> | <connection-impl-class>transaction.jca.MapConnection</connection-impl-class> | <transaction-support>XATransaction</transaction-support> | | <reauthentication-support>false</reauthentication-support> | | </resourceadapter> | </connector> | and here is my -ds.xml file <?xml version="1.0" encoding="UTF-8"?> | | <connection-factories> | | <tx-connection-factory> | <jndi-name>Map</jndi-name> | <xa-transaction/> | <adapter-display-name>Map Adapter</adapter-display-name> | </tx-connection-factory> | | | </connection-factories> | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836062#3836062 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836062 ------------------------------------------------------- This SF.Net email is sponsored by: Oracle 10g Get certified on the hottest thing ever to hit the market... Oracle 10g. Take an Oracle 10g class now, and we'll give you the exam FREE. http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click _______________________________________________ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user
