jboss-4.0.0 + JDO ( jpox-ds.xml ) ???
aws Nov 30, 2004 4:32 AMI upgraded to jboss-4.0.0 and when I place the jpox-1.0.4.rar and jpox-ds.xml files into the \jboss-4.0.0\server\default\deploy folder and try to run the JBoss I recieve this error message during startup:
ERROR [URLDeploymentScanner] Incomplete Deployment listing:
MBeans waiting for other MBeans:
ObjectName: jboss.jca:service=TxCM,name=jpox
state: CONFIGURED
I Depend On: jboss.jca:service=ManagedConnectionPool,name=jpox
jboss.jca:service=CachedConnectionManager
jboss:service=TransactionManager
Depends On Me: jboss.jca:service=ConnectionFactoryBinding,name=jpox
ObjectName: jboss.jca:service=ManagedConnectionPool,name=jpox
state: CONFIGURED
I Depend On: jboss.jca:service=ManagedConnectionFactory,name=jpox
Depends On Me: jboss.jca:service=TxCM,name=jpox
ObjectName: jboss.jca:service=ManagedConnectionFactory,name=jpox
state: CONFIGURED
I Depend On: jboss.jca:service=RARDeployment,name=''
Depends On Me: jboss.jca:service=ManagedConnectionPool,name=jpox
ObjectName: jboss.jca:service=ConnectionFactoryBinding,name=jpox
state: CONFIGURED
I Depend On: jboss.jca:service=TxCM,name=jpox
Depends On Me:
MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM:
ObjectName: jboss.jca:service=RARDeployment,name=''
state: NOTYETINSTALLED
I Depend On:
Depends On Me: jboss.jca:service=ManagedConnectionFactory,name=jpox
the contents of the jpox-ds.xml is :
<?xml version="1.0" encoding="UTF-8"?>
<connection-factories>
<tx-connection-factory>
<jndi-name>jpox</jndi-name>
<adapter-display-name>JPOX Connector</adapter-display-name>
<config-property name="ConnectionDriverName" type="java.lang.String">oracle.jdbc.driver.OracleDriver</config-property>
<config-property name="ConnectionURL" type="java.lang.String">jdbc:oracle:thin:@10.1.1.3:1521:mydb</config-property>
<config-property name="UserName" type="java.lang.String">123</config-property>
<config-property name="Password" type="java.lang.String">123</config-property>
<config-property name="AutoCreateSchema" type="boolean">true</config-property>
</tx-connection-factory>
</connection-factories>
Where is the problem?