This content has been marked as final. 
    
Show                 5 replies
    
- 
        1. Re: Problem deploying Oracle datasourceestiedi Apr 20, 2007 8:53 AM (in response to estiedi)Solution: 
 I moved the configuration to a jboss-ds.xml in the META-INF folder of the project (and the Oracle driver).
 The jboss-ds.xml format is as usual:<?xml version="1.0" encoding="UTF-8"?> <datasources> <local-tx-datasource> <jndi-name>MyDS</jndi-name> <connection-url>jdbc:oracle:thin:@server:1521:db</connection-url> <driver-class>oracle.jdbc.OracleDriver</driver-class> <user-name>myuser</user-name> <password>myPass</password> <min-pool-size>0</min-pool-size> <max-pool-size>20</max-pool-size> <idle-timeout-minutes>0</idle-timeout-minutes> <prepared-statement-cache-size>32</prepared-statement-cache-size> </local-tx-datasource> </datasources> 
 Note that if you use the same datasource in different modules/applications, you should take care to not define them twice!
- 
        2. Re: Problem deploying Oracle datasourcepyctam Apr 20, 2007 4:24 PM (in response to estiedi)move your jboss-ds.xml file to <embedded-jboss-home>/bootstrap/deploy directory and be sure that you have Oracle's JDBC drivers in your classpath or <embedded-jboss-home>/lib directory 
 --
 rustam bogubaev
- 
        3. Re: Problem deploying Oracle datasourcepyctam Apr 20, 2007 4:37 PM (in response to estiedi)your error already explained in your output :-) [junit] *** CONTEXTS MISSING DEPENDENCIES: Name -> Dependency{Required State:Actual State} [junit] [junit] jboss.jdbc:datasource=ApsysDS,service=metadata [junit] -> jboss.jdbc:service=metadata{Start:** NOT FOUND **} [junit] -> jboss.jdbc:service=metadata{Create:** NOT FOUND **} [junit] [junit] jboss.jdbc:datasource=GP3DS,service=metadata [junit] -> jboss.jdbc:service=metadata{Create:** NOT FOUND **} [junit] -> jboss.jdbc:service=metadata{Start:** NOT FOUND **}
 so you have to add these missing data sources into you jboss-ds.xml<?xml version="1.0" encoding="UTF-8"?> <datasources> <local-tx-datasource> <jndi-name>MyDS</jndi-name> <connection-url>jdbc:oracle:thin:@server:1521:db</connection-url> <driver-class>oracle.jdbc.OracleDriver</driver-class> <user-name>myuser</user-name> <password>myPass</password> <min-pool-size>0</min-pool-size> <max-pool-size>20</max-pool-size> <idle-timeout-minutes>0</idle-timeout-minutes> <prepared-statement-cache-size>32</prepared-statement-cache-size> </local-tx-datasource> <local-tx-datasource> <jndi-name> ApsysDS </jndi-name> <connection-url>jdbc:oracle:thin:@server:1521:db</connection-url> <driver-class>oracle.jdbc.OracleDriver</driver-class> <user-name>myuser</user-name> <password>myPass</password> <min-pool-size>0</min-pool-size> <max-pool-size>20</max-pool-size> <idle-timeout-minutes>0</idle-timeout-minutes> <prepared-statement-cache-size>32</prepared-statement-cache-size> </local-tx-datasource> <local-tx-datasource> <jndi-name> GP3DS </jndi-name> <connection-url>jdbc:oracle:thin:@server:1521:db</connection-url> <driver-class>oracle.jdbc.OracleDriver</driver-class> <user-name>myuser</user-name> <password>myPass</password> <min-pool-size>0</min-pool-size> <max-pool-size>20</max-pool-size> <idle-timeout-minutes>0</idle-timeout-minutes> <prepared-statement-cache-size>32</prepared-statement-cache-size> </local-tx-datasource> </datasources> 
 --
 rustam bogubaev
- 
        4. Re: Problem deploying Oracle datasourceestiedi Apr 23, 2007 2:57 AM (in response to estiedi)Hi Rustam, 
 Maybe I have explained the problem badly. It's exactly the way like you describe that doesn't work for me ("global deployment").
 I'm close to a deadline, so I don't have time to look into to it further right now, but I will and come back to this post later on.
 Thanks for your help, Rustam.
- 
        5. Re: Problem deploying Oracle datasourcebill.burke May 8, 2007 4:16 PM (in response to estiedi)thanks pyctam, whoever you are ! 
 
     
    