RE: Oracle connection pooling

2009-02-13 Thread Hamacher, Eric
Technology Achiever | Learner | Restorative | Intellection | Deliberative -Original Message- From: Propes, Barry L [mailto:barry.l.pro...@citi.com] Sent: Thursday, February 12, 2009 4:27 PM To: 'Tomcat Users List' Subject: RE: Oracle connection pooling Yeah -- looked like an odd port

RE: Oracle connection pooling

2009-02-13 Thread Propes, Barry L
And switch up accordingly. See if that doesn't work. -Original Message- From: Hamacher, Eric [mailto:eric_hamac...@gallup.com] Sent: Friday, February 13, 2009 11:45 AM To: Tomcat Users List Subject: RE: Oracle connection pooling I was just putting some fake values there. But I got around

RE: Oracle connection pooling

2009-02-13 Thread Hamacher, Eric
53562 USA GALLUP Technology Achiever | Learner | Restorative | Intellection | Deliberative -Original Message- From: Propes, Barry L [mailto:barry.l.pro...@citi.com] Sent: Friday, February 13, 2009 12:12 PM To: 'Tomcat Users List' Subject: RE: Oracle connection pooling For factory, I have

RE: Oracle connection pooling

2009-02-13 Thread Martin Gainty
To: users@tomcat.apache.org Date: Fri, 13 Feb 2009 11:44:43 -0600 Subject: RE: Oracle connection pooling I was just putting some fake values there. But I got around the problem (although I can't remember how) Now I put: Resource name=jdbc/GFDataSource auth=Container type

RE: Oracle connection pooling

2009-02-13 Thread Propes, Barry L
...@gallup.com] Sent: Friday, February 13, 2009 1:55 PM To: Tomcat Users List Subject: RE: Oracle connection pooling Thanks, I was able to get connections that way. However, I use Oracle-specific classes like: oracle.jdbc.OracleTypes; oracle.jdbc.internal.OracleCallableStatement; oracle.sql.ARRAY

RE: Oracle connection pooling

2009-02-13 Thread Uma Gudi
@tomcat.apache.org To Tomcat Users List users@tomcat.apache.org cc Subject RE: Oracle connection pooling I was just putting some fake values there. But I got around the problem (although I can't remember how) Now I put: Resource name=jdbc/GFDataSource auth=Container type

Oracle connection pooling

2009-02-12 Thread Hamacher, Eric
Hello: I am in a bind. I am getting: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context at org.apache.naming.NamingContext.lookup(NamingContext.java:770) at org.apache.naming.NamingContext.lookup(NamingContext.java:153) at

RE: Oracle connection pooling

2009-02-12 Thread Jorge Medina
Try ds = (DataSource)context.lookup(java:/comp/env/jdbc/GFDataSource); -Original Message- From: Hamacher, Eric [mailto:eric_hamac...@gallup.com] Sent: Thursday, February 12, 2009 3:52 PM To: users@tomcat.apache.org Subject: Oracle connection pooling Hello: I am in a bind. I am

RE: Oracle connection pooling

2009-02-12 Thread Jorge Medina
[mailto:eric_hamac...@gallup.com] Sent: Thursday, February 12, 2009 3:52 PM To: users@tomcat.apache.org Subject: Oracle connection pooling Hello: I am in a bind. I am getting: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context at org.apache.naming.NamingContext.lookup

RE: Oracle connection pooling

2009-02-12 Thread Propes, Barry L
and use a connection from the pool Connection connection = ds.getConnection(); -Original Message- From: Hamacher, Eric [mailto:eric_hamac...@gallup.com] Sent: Thursday, February 12, 2009 2:52 PM To: users@tomcat.apache.org Subject: Oracle connection pooling Hello: I am in a bind. I am

RE: Oracle connection pooling

2009-02-12 Thread Propes, Barry L
Users List Subject: RE: Oracle connection pooling Is your Oracle database port and is the name of your SID SID? We use Oracle jdbc driver with Oracle 10g. I set the attributes on the resource to: type=javax.sql.DataSource driverClassName=oracle.jdbc.OracleDriver and no factory

Re: Oracle connection pooling

2009-02-12 Thread Anurag Kapur
only seen 1521, 1526 and 1527 before. I figured his SID was just a generic placeholder for his real SID. -Original Message- From: Jorge Medina [mailto:jmed...@e-dialog.com] Sent: Thursday, February 12, 2009 4:12 PM To: Tomcat Users List Subject: RE: Oracle connection pooling Is your