Atomikos Forum |
|
Hello,
I'm using atomikos with spring and hibernate and Oracle with this datasource configuration : <bean id="datasource1" class="com.atomikos.jdbc.AtomikosDataSourceBean" init-method="init" destroy-method="close"> <property name="uniqueResourceName"><value>XADBMS_CATV</value></property> <property name="xaDataSourceClassName" value="oracle.jdbc.xa.client.OracleXADataSource" /> <property name="xaProperties"> <props> <prop key="user">${hibernate.connection.username}</prop> <prop key="password">${hibernate.connection.password}</prop> <prop key="URL">${hibernate.connection.url}</prop> </props> </property> <property name="poolSize" value="20"/> </bean> Everything works fine excepts when an Oracle Trigger call an external library, receiving this exception : org.hibernate.util.JDBCExceptionReporter - ORA-03001: unimplemented feature ORA-06512: at "INTRAWAY.MAILDB", line 84 Thanks, Sergio!
Looks like an Oracle issue - also see here http://forums.oracle.com/forums/thread.jspa?threadID=191440
|