• 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Problem with database connect

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi
I am using JBoss with Eclipse and Oracle 10G
i have given a dabase connection pooling detail in struts-config.xml as following.
<data-sources>
<data-source
autoCommit="false"
description="Oracle Database Config"
driverClass="oracle.jdbc.driver.OracleDriver"
key="LOOKDB"
maxCount="4"
minCount="2"
password="fms_admin"
url="jdbc racle:thin:@192.168.0.16:1521:netmind"
user="fms_admin"
/>
</data-sources>

and now i am looup this datacource using the following code.
DataSource ds=null;
ds=(DataSource)new InitialContext.lookup("jdbc/REFDB")
Conn=ds.getConnection();

but whenever i am starting my server i am getting following exception

Initializing application data source REFDB
java.lang.NullPointerException
javax.servlet.UnavailableException: Initializing application data source REFDB

please tell me where i am wrong.

Thanks
Pankaj
 
The moth suit and wings road is much more exciting than taxes. Or this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic