• 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

JNDI on startup

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I need to load my JNDI datasource before the startup servlet,becacuse in startupservlet I am having some code which loads some values from the database.

I am using the lookup code to get the JNDI name ,but it is not finding that name.


web.xml code added this code after taglibs definitions
<resource-ref>
<description>Primary database</description>
<res-ref-name>jdbc/wbol</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>

sun-web.xml code
<resource-ref>
<res-ref-name>jdbc/wbol</res-ref-name>
<jndi-name>jdbc/wbol</jndi-name>
</resource-ref>

java code:
initContext = new InitialContext();
source = (DataSource) initContext.lookup ("java:comp/env/jdbc/wbol");

can anyone help me out to resolve this issue.
 
Sheriff
Posts: 3341
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You need to configure the JNDI Data Source in the Admin application for the server.
http://docs.sun.com/source/819-0076/jdbc.html
 
A timing clock, fuse wire, high explosives and a tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic