Skip to content

Instantly share code, notes, and snippets.

@splatch
Created December 9, 2011 08:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save splatch/1450761 to your computer and use it in GitHub Desktop.
Save splatch/1450761 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.osgi.org/xmlns/blueprint/v1.0.0
http://www.osgi.org/xmlns/blueprint/v1.0.0
http://camel.apache.org/schema/blueprint
http://camel.apache.org/schema/blueprint/camel-blueprint.xsd
">
<bean id="enhydraDataSource1" class="com.atomikos.jdbc.AtomikosDataSourceBean">
<property name="uniqueResourceName" value="fenix1" />
<property name="xaDataSource">
<bean class="oracle.jdbc.xa.client.OracleXADataSource">
<property name="driverType" value="thin" />
<property name="databaseName" value="XE" />
<property name="user" value="fenix1" />
<property name="password" value="neon1" />
<property name="portNumber" value="1521" />
<property name="serverName" value="172.16.211.132" />
</bean>
</property>
</bean>
<bean id="enhydraDataSource2" class="com.atomikos.jdbc.AtomikosDataSourceBean">
<property name="uniqueResourceName" value="fenix2" />
<property name="xaDataSource">
<bean class="oracle.jdbc.xa.client.OracleXADataSource">
<property name="driverType" value="thin" />
<property name="databaseName" value="XE" />
<property name="user" value="fenix2" />
<property name="password" value="neon2" />
<property name="portNumber" value="1521" />
<property name="serverName" value="172.16.211.132" />
</bean>
</property>
</bean>
</blueprint>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment