• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

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
 
reply
    Bookmark Topic Watch Topic
  • New Topic