• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

problem in loading database drivers, using jboss

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In my jboss , when i deploy and run my project, i am getting login page and when i give my uid and pwd and submit data, its throwing exception saying connectivity is not present.

but when i refresh the same page and resend the data again its getting connected to db and getting validated.

jboss version-jboss-4.0.3SP1

ds.xml(located in deploy folder of jboss)
<local-tx-datasource>
<jndi-name>awpds</jndi-name>
<connection-url>jdbc racle:thin:@3.137.168.136:1529 EVCMA</connection-url>
<driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
<user-name>CMADBA</user-name>
<password>devcma321#</password>
<min-pool-size>5</min-pool-size>
<max-pool-size>200</max-pool-size>
<idle-timeout-minutes>30</idle-timeout-minutes>
<new-connection-sql>select sysdate from dual</new-connection-sql>
<check-valid-connection-sql>select sysdate from dual</check-valid-connection-sql>
</local-tx-datasource>

please let me know if there is any configuration or settings i need to do in my jboss or project
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please post the exception, preferably the one in the console log, not the one displayed in the browser.

What version of Oracle?

Also, when posting XML text of source code, please use the 'code' UBBCode tag to that the source is properly formatted.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic