hi there,
I have got an entity bean which connects to oracle
database. How and where can i give thr name of the driver and the JDBC_URL.
-
problem in creating deployment descriptor (4 messages)
- Posted by: Rahul ..
- Posted on: April 02 2001 16:03 EDT
Threaded Messages (4)
- problem in creating deployment descriptor by eddie chui on April 03 2001 00:10 EDT
- problem in creating deployment descriptor by Rahul .. on April 03 2001 05:32 EDT
- problem in creating deployment descriptor by John Yost on April 03 2001 13:12 EDT
- problem in creating deployment descriptor by Rahul .. on April 07 2001 08:44 EDT
-
problem in creating deployment descriptor[ Go to top ]
- Posted by: eddie chui
- Posted on: April 03 2001 00:10 EDT
- in response to Rahul ..
What app server u use ? -
problem in creating deployment descriptor[ Go to top ]
- Posted by: Rahul ..
- Posted on: April 03 2001 05:32 EDT
- in response to eddie chui
Hi edde,
Thanks for your response. I am using Weblogic 6.0
Rahul -
problem in creating deployment descriptor[ Go to top ]
- Posted by: John Yost
- Posted on: April 03 2001 13:12 EDT
- in response to Rahul ..
Hi,
I would suggest using a DataSource object instead. All J2EE-compliant app servers support DataSource, which is a database connection pool object managed by the server. Each DataSource (database) is defined in the server config file, so nothing appears in the deployment descriptor.
Check it out-- it's part of the JDBC2.1 optional package as well as the J2EE API.
John -
problem in creating deployment descriptor[ Go to top ]
- Posted by: Rahul ..
- Posted on: April 07 2001 08:44 EDT
- in response to John Yost
Thanks