Re: Connection Pool

2004-12-02 Thread Pranav Lal
8:31 PM To: [EMAIL PROTECTED] Subject: Connection Pool Hello every, I want to use Connection Pool which can connect into Oracle Database in JSP,I use one,but that connection pool often raise Http 500 errors,I am very puzzled with connection pool.Would you give me a advice where I can get a free Conne

Re: Connection Pool

2004-12-01 Thread Martin Gainty
) Etats Unis / US 001-617-852-7822 From: Ananthalakshmi Subramaniyam <[EMAIL PROTECTED]> Reply-To: A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: Connection Pool Date: Tue, 30 Nov 2004 13:46:14 +0530 MIME-Ve

Re: Connection Pool

2004-11-30 Thread Ananthalakshmi Subramaniyam
ently Asked Questions: http://www.oracle.com/technology/tech/java/sqlj_jdbc/htdocs/jdbc_faq.htm#36_00 Thanks, H.Ananthalakshmi. From: Edward King <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: Connection Pool Date: Tue, 30 Nov 2004 13:46:23 +0800 Mr Ananthalakshmi Where can I g

Re: Connection Pool

2004-11-29 Thread Partha Ranjan Das
Hi, Why don't you use the JDBC 2.0 compliant connection pool open-source set up provided by Apache under Commons DBCP. It can connect to any database as long you have a DataSource for the database. You need to set up the pool in server.xml and refer that resource in the web.xml to make u

Re: Connection Pool

2004-11-29 Thread Ananthalakshmi Subramaniyam
Hi, Are you using Oracle JDBC 2.0 Driver and Jdk 1.3 or greater? Why can't you try the oracle connection pool, built-in package implemented in Oracle JDBC driver. Please go through Oracle JDBC Developer Guide for the implementation details. Thanks, H.Ananthalakshmi. From: sandeepK &l

Re: Connection Pool

2004-11-29 Thread sandeepK
yes i can give you the Connection Pool code I have developed for oracle database. Sandeep Katiyar - Original Message - From: "Edward King" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 29, 2004 5:30 PM Subject: Connection Pool > Hello

Re: Connection Pool

2004-11-29 Thread Campano, Troy
al Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED] On Behalf Of Edward King Sent: Monday, November 29, 2004 8:31 PM To: [EMAIL PROTECTED] Subject: Connection Pool Hello every, I want to use Connection Pool which can connect into Oracl

Connection Pool

2004-11-29 Thread Edward King
Hello every, I want to use Connection Pool which can connect into Oracle Database in JSP,I use one,but that connection pool often raise Http 500 errors,I am very puzzled with connection pool.Would you give me a advice where I can get a free Connection Pool which has good performance? Thanks

Re: Connection pool

2003-02-27 Thread Asif.Raj
protomatter.sourceforge.net -Original Message- From: Deepak [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 2:28 PM To: [EMAIL PROTECTED] Subject: Connection pool Hi Can anyone tell me where I can get jdbc connection pool code or library? any urls will be helpful or if

Connection pool

2003-02-27 Thread Deepak
Hi Can anyone tell me where I can get jdbc connection pool code or library? any urls will be helpful or if anybody has the code with them , kindly send it over. I am using Tomcat 3.3.1 and MySql 3.53 on a linux machine for my web app. Thanx in advance Deepak

Re: JDBC Connection Pool

2003-01-13 Thread Juan Carlos Montenegro
Cc:(bcc: Juancarlos Montenegro-JC/PGI) Subject: Re: JDBC Connection Pool 01/13/2003 12:42 PM Please respond to A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]>

Re: JDBC Connection Pool

2003-01-13 Thread Campano, Troy
EMAIL PROTECTED] Subject: JDBC Connection Pool Friends: How can I implement this JDBC Connection Pool for an Oracle database? This is the general overview page: http://www.bitmechanic.com/projects/jdbcpool/ This is the link where the library is located: http://www.bitmechanic.com/projects/jdb

JDBC Connection Pool

2003-01-13 Thread Juan Carlos Montenegro
Friends: How can I implement this JDBC Connection Pool for an Oracle database? This is the general overview page: http://www.bitmechanic.com/projects/jdbcpool/ This is the link where the library is located: http://www.bitmechanic.com/projects/jdbcpool/dist/jdbcpool-0.99.tar.gz Should I make

Re: Connection Pool

2002-07-15 Thread Mohamed Reyas M.S
The use of resources which are expensive to obtain, should be minimised. But sometimes it cannot be avoided all together. So the better strategy is to reuse the expensive resources as much as possible, once obtained. JDBC Connections are expensive resources and obtaining them is a time-consuming o

Re: Connection Pool

2002-07-15 Thread Ritesh Gupta
5, 2002 2:59 PM Subject: Connection Pool Hi, Can somebody please explain what is Connection Pooling??? Regards, aruniima This message contains privileged and confidential information and is intended only for th

Re: Connection Pool

2002-07-15 Thread 崔 建偉
the pool is a storage which can store N conncections when you want to connecte to the DB you first ask for Pool. if there is a spare connection in the pool .you can use it directly. othersize you.d connection to the DB which take time. you can write a simple connection pool. - Original

Connection Pool

2002-07-15 Thread Aruniima Chakrabarti
Hi, Can somebody please explain what is Connection Pooling??? Regards, aruniima This message contains privileged and confidential information and is intended only for the individual named. If you are not the i

database connection pool managers and JSP

2002-03-13 Thread Soefara Redzuan
Sorry if this has been answered before but w hich databaes connection pool manager do you use and why ? I'm using Tomcat but also would like my webapps to be portable to other servers like Orion in the future. Also I can use a database connection from the pool inside a scriptlet but how

Ldap Connection Pool

2001-12-03 Thread Damodaran, Rajakumar (CORP, Consultant)
Hi How to create a connectionpool in Ldap.? Does any body have the sample code or any Link. Thanks D.Rajakumar === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mail

Re: Turbin connection pool

2001-09-20 Thread Milind
Hi Guys, Has anybody implemented Coonection pooling in Baan?I am accessing Baan from my java front end.Baan provides BOI classes to do that but is it possible to use a connection pool in Baan? Thanx, Milind - Original Message - From: horwat <[EMAIL PROTECTED]> To: <[EMAIL PROTECT

Re: Turbin connection pool

2001-09-20 Thread horwat
Look at the documentation available off of the xml apache website: http://xml.apache.org/cocoon/connection-pool.html Justy - Original Message - From: "Isak Rickyanto" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 18, 2001 3:07 AM Subject:

newbie question: connection pool

2001-09-12 Thread wei xinfa
Hi, I am using tomcat. Would anyone please point out if I have to manage connection pool myself, or anything I can use? === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For dige

Re: Best way to load up a connection pool?

2001-07-05 Thread Mattias Jiderhamn
We have an application in development stage. Instead of a connection pool I have chosen to give each logged in user its own Connection which is stored, together with other session stuff, in a session bean (i.e. sessionBean.getConnection() wherever DB is needed). I haven't seen anyone els

Re: Best way to load up a connection pool?

2001-07-05 Thread Chandra Patni
reference [mailto:[EMAIL PROTECTED]]On Behalf Of Pantarotto, Sio Sent: Thursday, July 05, 2001 3:15 PM To: [EMAIL PROTECTED] Subject: Re: Best way to load up a connection pool? Is ServletContext the same as session -Original Message- From: Erik Morton [mailto:[EMAIL PROTECTED]] Sent

cont: Best way to load up a connection pool?

2001-07-05 Thread Rick Reumann
application scope ) 2) user goes to some other page WITHOUT any 3) This JSP page calls a method in some class. That method in the class grabs a connection from the connection pool(???) ..Question.. would the method call in the class in step 3 above have access to the ConnectionManager in the

Re: Best way to load up a connection pool?

2001-07-05 Thread Pantarotto, Sio
f you Sio -Original Message- From: Erik Morton [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 05, 2001 3:30 PM To: [EMAIL PROTECTED] Subject: Re: Best way to load up a connection pool? No. The ServletContext object has application level scope. This means that all users of a single web application

Re: Best way to load up a connection pool?

2001-07-05 Thread Erik Morton
t the same as session > > -Original Message- > From: Erik Morton [mailto:[EMAIL PROTECTED]] > Sent: Thursday, July 05, 2001 2:41 PM > To: [EMAIL PROTECTED] > Subject: Re: Best way to load up a connection pool? > > So many ways. > > One way: > Have your co

Re: Best way to load up a connection pool?

2001-07-05 Thread Pantarotto, Sio
Is ServletContext the same as session -Original Message- From: Erik Morton [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 05, 2001 2:41 PM To: [EMAIL PROTECTED] Subject: Re: Best way to load up a connection pool? So many ways. One way: Have your connection manager class

Re: Best way to load up a connection pool?

2001-07-05 Thread Erik Morton
>flame me. > > First off, if the design issues are bad here to start with please tell me. > Anyway say I have a connection pool ( ConnectionManater.java ). Then I also have >several different classes that have methods that do DB stuff and they get their >connections from this poo

Best way to load up a connection pool?

2001-07-05 Thread Rick Reumann
I apologize if this is too basic a question for this list. If so you feel free to flame me. First off, if the design issues are bad here to start with please tell me. Anyway say I have a connection pool ( ConnectionManater.java ). Then I also have several different classes that have methods

Re: Who know how to create a "Connection Pool" in Java?

2001-06-17 Thread Mayuresh Kadu
how to create a "Connection Pool" in Java? This is an example package test; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.util.*; import java.sql.*; import javax.sql.*; import javax.naming.*; /** * Insert the type's description here. * Creati

Re: Who know how to create a "Connection Pool" in Java?

2001-06-15 Thread Panayotou, Michael
t the following line when unexpected exceptions // are occuring to aid in debugging the problem. //theException.printStackTrace(); } } } Regards Michael Panagiotou -----Original Message- From: Mayuresh Kadu [mailto:[EMAIL PROTECTED]] Sent: Friday, June

Re: Who know how to create a "Connection Pool" in Java?

2001-06-15 Thread Mayuresh Kadu
: [EMAIL PROTECTED] Subject: Re: Who know how to create a "Connection Pool" in Java? Rohit, Mayuresh, There are a number of textbooks out on the market that describe how to create your own connection pool class bean, or even a servlet. I much prefer to use a third party driver which a

Re: Who know how to create a "Connection Pool" in Java?

2001-06-14 Thread kuttappan
Thanks. Rohit - Original Message - From: "Haseltine, Celeste" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, 13 June, 2001 9:13 PM Subject: Re: Who know how to create a "Connection Pool" in Java? > Rohit, Mayuresh, > > There ar

Re: Who know how to create a "Connection Pool" in Java?

2001-06-13 Thread Sachin S. Khanna
its next run. Hope this helps :-). Have a nice day. With regards, Sachin S. Khanna http://www.emailanorder.com - Original Message - From: King Maurice <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 14, 2001 2:26 AM Subject: Re: Who know how to create a "Co

Re: Who know how to create a "Connection Pool" in Java?

2001-06-13 Thread David Shanes
Chandra, Thank you. I will look at what I am doing some more. Sincerely, David Shanes At 02:36 PM 6/13/2001, you wrote: >I havn't done weblogic configuration yet. But I think the you don't create a >connection pool and assign it to datasource. Simply because there

Re: Who know how to create a "Connection Pool" in Java?

2001-06-13 Thread Chandra Patni
I havn't done weblogic configuration yet. But I think the you don't create a connection pool and assign it to datasource. Simply because there is no method in DataSource class to set the connection pool. In fact a connection pool needs to be created in the following way

Re: Who know how to create a "Connection Pool" in Java?

2001-06-13 Thread King Maurice
gc is done on the fly, once the session is terminated for example - Original Message - From: "horwat" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 13, 2001 5:29 PM Subject: Re: Who know how to create a "Connection Pool" in Java?

Re: Who know how to create a "Connection Pool" in Java?

2001-06-13 Thread horwat
Arrays are objects and you can only point to them. Once you change the reference to null the array will be marked for deletion by the gc. Be aware that all references must be null for the array to be deleted. Justy - Original Message - > Does any one know the implementation of how to de

Re: Who know how to create a "Connection Pool" in Java?

2001-06-13 Thread King Maurice
Does any one know the implementation of how to destroy an array or delete an array. - Original Message - From: "David Shanes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 13, 2001 4:45 PM Subject: Re: Who know how to create a "Connection

Re: Who know how to create a "Connection Pool" in Java?

2001-06-13 Thread David Shanes
Chandra, Maybe you can answer this. I am trying to set up BEA Weblogic 6.0. We are testing app servers to see which one we want to use. I am trying to set up a connection pool to an Oracle 8.1.7 database. If you have not worked with Weblogic, first you create a pool and then you

Re: Who know how to create a "Connection Pool" in Java?

2001-06-13 Thread Chandra Patni
With JDBC 2.0, you don't have to resort of 3rd party pooling classes. A preferred way of using connection pool object is to use JDBC2.0 optioanal package compliant driver (Oracle driver complies with these spec) and the create an instance of DataSource object and you can use connection pool

Re: Who know how to create a "Connection Pool" in Java?

2001-06-13 Thread Haseltine, Celeste
Rohit, Mayuresh, There are a number of textbooks out on the market that describe how to create your own connection pool class bean, or even a servlet. I much prefer to use a third party driver which already has connection pooling, and then creating a singleton class surrounding the third party

Re: Who know how to create a "Connection Pool" in Java?

2001-06-13 Thread Mayuresh Kadu
to create a "Connection Pool" in Java? Mayuresh, I'm not a guru when it comes to EJB's, I've only really worked with JSP's and Servlets. I did take a design course regarding EJB's, Servlets, and JSP's recently, and one of the things that was brought out

Re: Who know how to create a "Connection Pool" in Java?

2001-06-13 Thread Mayuresh Kadu
PROTECTED] Subject: Re: Who know how to create a "Connection Pool" in Java? I have decided to take the idea of writing my existing beans in such a way that currently they will use Connection Pooling. I would like to see your code and learn how to use Connection Pooling with beans. Tha

Re: Who know how to create a "Connection Pool" in Java?

2001-06-11 Thread kuttappan
swamy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, 11 June, 2001 2:02 PM Subject: Re: Who know how to create a "Connection Pool" in Java? > If we write a portable JSP application, how is that possible to use > container specific connection pool? >

Re: Who know how to create a "Connection Pool" in Java?

2001-06-11 Thread Celeste Haseltine
- From: Mayuresh Kadu [mailto:[EMAIL PROTECTED]] Sent: Monday, June 11, 2001 2:16 AM To: [EMAIL PROTECTED] Subject: Re: Who know how to create a "Connection Pool" in Java? ok .. thats that. Now my existing application is built using JSP-Beans combo (MVC1 -- Taglibraries) and is wor

Re: Who know how to create a "Connection Pool" in Java?

2001-06-11 Thread VENKATACHALAPATHY Duraiswamy
If we write a portable JSP application, how is that possible to use container specific connection pool? -Original Message- From: Mayuresh Kadu [SMTP:[EMAIL PROTECTED]] Sent: Monday, June 11, 2001 1:56 PM To: [EMAIL PROTECTED] Subject

Re: Who know how to create a "Connection Pool" in Java?

2001-06-11 Thread Milind
EJB's then > connection pooling would not be required -- right ?! > > Ok then .. how do i decide whether Implementing a Connection Pool is better > or is moving on to EJB's is the better solution. Given the background thay > right now my app is running happily -- but i expect

Re: Who know how to create a "Connection Pool" in Java?

2001-06-11 Thread Mayuresh Kadu
to create a "Connection Pool" in Java? Hi Mayuresh, EJBs also use Connection Pooling- only thing is that the pool is maintained by the application server itself. If you are using aplication server, you might as well use the same pool for your JSP/ java beans combination. If you are usin

Re: Who know how to create a "Connection Pool" in Java?

2001-06-11 Thread Rishabh Agarwal
create and maintain a connection pool yourself using simple java beans. Give a find on google etc. for 'java code connection pool' and you will get a lot of sites with free codes. I guess moving to EJB's just for the connection pooling would not be a very prudent idea. The same can

Re: Who know how to create a "Connection Pool" in Java?

2001-06-11 Thread Mayuresh Kadu
o i decide whether Implementing a Connection Pool is better or is moving on to EJB's is the better solution. Given the background thay right now my app is running happily -- but i expect my client-number to go up regularly what would u guyz suggest -- Conn. Pooling or EJB's ? May

Re: Who know how to create a "Connection Pool" in Java?

2001-06-07 Thread Justin M. Whiting
n and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Celeste Haseltine Sent: Thursday, June 07, 2001 2:33 PM To: [EMAIL PROTECTED] Subject: Re: Who know how to create a "Connection Pool" in Java? Mayuresh, I have NOT programmed EJB's, only JSP and servlets, but from my training, it

Re: Who know how to create a "Connection Pool" in Java?

2001-06-07 Thread Celeste Haseltine
Mayuresh, I have NOT programmed EJB's, only JSP and servlets, but from my training, it was my understanding that EJB's do not need to use a connection pool. Servlets and JSP's yes, but not EJB's. I think it had something to do with the architecture of EJB's compared to

Re: Who know how to create a "Connection Pool" in Java?

2001-06-07 Thread Kevin Duffey
luck. > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Mayuresh Kadu > Sent: Thursday, June 07, 2001 10:00 AM > To: [EMAIL PROTECTED] > Subject: Re: Who know how to create a "Connection

Re: Who know how to create a "Connection Pool" in Java?

2001-06-07 Thread Mayuresh Kadu
t: Re: Who know how to create a "Connection Pool" in Java? I do..but why would you have to? If your migrating towards any Servlet 2.2 or J2EE app server, almost all of them have built-in connection pooling. Part of J2EE is connection pool management of database connections and of entity an

Re: Who know how to create a "Connection Pool" in Java?

2001-06-05 Thread Duffey, Kevin
I do..but why would you have to? If your migrating towards any Servlet 2.2 or J2EE app server, almost all of them have built-in connection pooling. Part of J2EE is connection pool management of database connections and of entity and session beans, so you don't have to

Re: Who know how to create a "Connection Pool" in Java?

2001-06-05 Thread VoiD
If you are refering to a database connection pool, i recommend looking at http://www.javaexchange.com and their Connection Broker which is really good, and i have used for some time now... /D - Original Message - From: "lancelot" <[EMAIL PROTECTED]> To: <[EMAIL PROTEC

Who know how to create a "Connection Pool" in Java?

2001-06-04 Thread lancelot
Excuse me, Who know how to create a "Connection Pool" in Java? Thanks a lot. Lancelot. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL

Re: Database connection Pool in Tomcat

2001-05-31 Thread Oliver Wood
You love this poolman --- Franck Rasolo <[EMAIL PROTECTED]> wrote: > --- Ashish Shrestha <[EMAIL PROTECTED]> wrote: > > You can also try PoolMan (forgot the URL). > > => http://www.codestudio.com/ > > > __ > Do You Yahoo!? > Get personalized email

Re: Database connection Pool in Tomcat

2001-05-30 Thread Franck Rasolo
--- Ashish Shrestha <[EMAIL PROTECTED]> wrote: > You can also try PoolMan (forgot the URL). => http://www.codestudio.com/ __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/

Re: Database connection Pool in Tomcat

2001-05-30 Thread Ashish Shrestha
You can also try PoolMan (forgot the URL). You just use jdbc:poolman://yourdatabase instead of the real url. Configure poolman using the poolman.xml code the program as you normally do without a connection pool or cache. when you do someConnection.close() instead of closing it just returns it

Re: Database connection Pool in Tomcat

2001-05-30 Thread Hans Bergsten
"Chawla, Mehar" wrote: > > Hi all, > > Can anyone tell me how to implement JDBC connection pooling in Tomcat. > Basically I want the following things : > > 1. Setup the connection pool in web.xml or server.xml with oracle user > name and password s

Re: Database connection Pool in Tomcat

2001-05-30 Thread Daryani Santosh
on 05/29/2001 10:30:57 PM Please respond to A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc:(bcc: Santosh Daryani/IT/Aon Consulting) Subject: Re: Database connection Pool in Tomcat "Chawla, Mehar&q

Re: Database connection Pool in Tomcat

2001-05-30 Thread Brad Cox
> 1. Setup the connection pool in web.xml or server.xml with oracle user >name and password set up in that file itself to avoid harcoding the username >and password > in the servlets or jsp files. > 2. Create a Servlet with methods GetConnection and ReleaseConnection >

Database connection Pool in Tomcat

2001-05-30 Thread Chawla, Mehar
Hi all, Can anyone tell me how to implement JDBC connection pooling in Tomcat. Basically I want the following things : 1. Setup the connection pool in web.xml or server.xml with oracle user name and password set up in that file itself to avoid harcoding the username and password

Re: MVC and Database Connection Pool

2001-03-23 Thread Duffey, Kevin
; From: Gerry Scheetz [mailto:[EMAIL PROTECTED]] > Sent: Friday, March 23, 2001 7:26 AM > To: [EMAIL PROTECTED] > Subject: MVC and Database Connection Pool > > > I am developing a database application and am using a similar > MVC design to that in a couple books I have. In those bo

Re: MVC and Database Connection Pool

2001-03-23 Thread Kare Nuorteva
; Subject: MVC and Database Connection Pool > > I am developing a database application and am using a similar MVC > design to that in a couple books I have. In those books they have a > singleton class (a class in which there will only ever be one > instance) that accesses the databas

MVC and Database Connection Pool

2001-03-23 Thread Gerry Scheetz
fact that I am using a database to every classes except the singleton classes. Right now I can not figure out how to use one common collection without defining it in my Controller/Servlet class and then instantiating all my singleton classes and telling them about the connection pool. So what I am

sharing a connection pool

2001-03-22 Thread A.C.
I'm trying to implement a connection pool. I've a vector containings all the available connections: how/where/when should i declare it to share it with all the sessions? I tried to declare the vector as bean with scope application, but it do

Re: Error Accessing Connection pool

2001-02-02 Thread Ng Wei Tze, Zac
-Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of S P Sent: Saturday, February 03, 2001 1:51 AM To: [EMAIL PROTECTED] Subject: Re: Error Accessing Connection pool I have tested following JSP with Weblogic

Re: Error Accessing Connection pool

2001-02-02 Thread S P
I have tested following JSP with Weblogic connection pool. It worked fine with me. try if it works for u. <%@ page language = "java" import="java.sql.*" %> <% try { Connection con = null; Class.forName("weblogi

Re: Error Accessing Connection pool

2001-02-01 Thread Yogeeta_Raghunathan
rence > Sent: Wednesday, January 31, 2001 7:48 PM > To: [EMAIL PROTECTED] > Subject: Re: Error Accessing Connection pool > > Could this be an error accessing the Context and not the connection pool > ??? > You could try putting a blank username and password in the propertie

Re: Error Accessing Connection pool

2001-01-31 Thread T A Flores
First of all why are you doing this in a JSP? Put it in a servlet or something. Also this has been discussed please see the archives. - Original Message - From: Yogeeta_Raghunathan <[EMAIL PROTECTED]> Date: Tuesday, January 30, 2001 11:09 pm Subject: Error Accessing Connectio

Re: Error Accessing Connection pool

2001-01-31 Thread Lee Turner
Could this be an error accessing the Context and not the connection pool ??? You could try putting a blank username and password in the properties as follows: public static Context getInitialContext() throws NamingException { String url = "t3://127.0.0.1:7001"; String u

Error Accessing Connection pool

2001-01-31 Thread Yogeeta_Raghunathan
Hi, I created a connection pool under weblogic 5.1 server as below. weblogic.jdbc.connectionPool.bscsPool=\ url=jdbc:weblogic:oracle:IPAdd:Port,\ driver=weblogic.jdbc.oci.Driver,\ initialCapacity=4,\ maxCapacity=10,\ capacityIncrement=1,\ props

Re: connection pool

2001-01-30 Thread S P
not very sure as I never used them. >From: Ehab Taleb <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: connection pool >Date: Tue, 30 Jan 2001 12:45:27 -0500

connection pool

2001-01-30 Thread Ehab Taleb
hi do i have to implement connection pool manager in my application even if i am using weblogic as my webserver dose weblogic already has connection pool manager can some body put some light on this subject and which of the webservers out there give us this featue without implementing it thanks

Re: Connection Pool

2001-01-08 Thread Sachin S. Khanna
y the webserver on startup. Have a nice day. With regards, Sachin S. Khanna. www.emailanorder.com - Original Message - From: Bhavesh Vakil <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, January 06, 2001 6:36 PM Subject: Connection Pool > Hi to all, > > I use

Connection Pool

2001-01-05 Thread Bhavesh Vakil
Hi to all, I use Apache 1.3.12 + Tomcat 3.1 + Oracle 8.1.6 + Oracle 8.1.6 (JDBC 2.0) driver on LINUX. I read Oracle 8.1.6 JDBC document and test all [ connection pool + connection cache ] related programs in (.java) form. It works fine. My question is how I initialize [ connection pool

How to Access the connection pool

2000-12-10 Thread Muhammad Asim Ajmal
Hi!!! i m again asking for help i m using Weblogic server,,, i have created the connection pool by this way weblogic.jdbc.connectionPool.oraclePool=\ url=jdbc:weblogic:oracle,\ driver=weblogic.jdbc.oci.Driver,\ loginDelaySecs=1,\ initialCapacity=4

Re: How to Access the connection pool

2000-12-07 Thread Vineet K Jain
This is a static method I am using to obtain a connection from the connection pool public static Connection getConnection() throws SQLException { System.out.println("EJBUTIL : getConnection(1)"); InitialContext initCtx = null; System.out.printl

How to Access the connection pool

2000-12-07 Thread Muhammad Asim Ajmal
Hi i m using Weblogic server,,, i have created the connection pool by this way weblogic.jdbc.connectionPool.oraclePool=\ url=jdbc:weblogic:oracle,\ driver=weblogic.jdbc.oci.Driver,\ loginDelaySecs=1,\ initialCapacity=4,\ maxCapacity=10

Re: Connection Pool

2000-09-15 Thread wang ysh
you can access to the http://webdevelopersjournal.com/columns/connection_pool.html for detail information. --- Angela Chow <[EMAIL PROTECTED]> wrote: > Hi all, > We learned about the concept of using Connection > Pool > in JSP application. Can someone help to tell me > wha

Connection Pool

2000-08-30 Thread Angela Chow
Hi all, We learned about the concept of using Connection Pool in JSP application. Can someone help to tell me what is the connection pool and how to implement it? Thanks Angela __ Do You Yahoo!? Yahoo! Mail - Free email you can access from

Re: How to create Connection Pool?

2000-08-01 Thread Thor Heinrichs-Wolpert
Why do you want to create a connection pool when using EJBs? I think you should have a better look at EJBs first before trying this. Thor HW - Original Message - From: "Diwakar Killamsetty" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 01, 2000 2

Re: Thanks - Connection Pool

2000-08-01 Thread Thor Heinrichs-Wolpert
Wayne: Maybe yet some other points to remember for when you start teaching: 1. netiquite - you should at least look like you've tried a little on your own. 2. try to answer the question that was asked. In this case you WOULDN'T use the connection pool listed in an EJB server. Tha

Re: Thanks - Connection Pool

2000-08-01 Thread wayne allison
Paul, While I am probably more of a novice at Java than the person whose post you originally answered, I appreciate your pointing out the reference documentation that is so readily available. I will save your post for some day [at least 12 months out] when I will be teaching Java as well. W

Re: Connection Pool

2000-08-01 Thread Khem Chand Sachdeva
We have got enough copies of ur question. If somebody knows he will respond back to u. Diwakar Killamsetty wrote: > Hi, > > I am novice to EJB Technologies. > Is there any way to create connection pool in Reference Implementation? If > so please let me know how to do. >

Re: Connection Pool

2000-08-01 Thread Matthews,Paul
Is it REALLY necessary to post simple questions multiple times across multiple lists? Especially when (i) it can be answered with a simple search. (ii) it has been answered in this forum before quite recently Go to www.excite.com, type in 'java connection pooling' and follow the first link (java

Connection Pool

2000-08-01 Thread Diwakar Killamsetty
Hi, I am novice to EJB Technologies. Is there any way to create connection pool in Reference Implementation? If so please let me know how to do. Thanks in advance. regards, Diwakar. === To unsubscribe: mailto [EMAIL

Re: How to create Connection Pool?

2000-08-01 Thread Aby Kuriakose
: Diwakar Killamsetty <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 01, 2000 4:33 AM Subject: How to create Connection Pool? > Hi, > > I am novice to EJB Technologies. > Please let me know how to create a connection pool in Reference > Implementatio

Re: How to create Connection Pool?

2000-08-01 Thread Matthews,Paul
Check out the archives- I posted some sample code about two weeks ago. Regards, Paul > -Original Message- > From: Diwakar Killamsetty [mailto:[EMAIL PROTECTED]] > Sent: 01 August 2000 10:33 > To: [EMAIL PROTECTED] > Subject: How to create Connection Pool? > > >

How to create Connection Pool?

2000-08-01 Thread Diwakar Killamsetty
Hi, I am novice to EJB Technologies. Please let me know how to create a connection pool in Reference Implementation. regards, Diwakar. (office) +91-40-3308600 x8547. === To unsubscribe: mailto [EMAIL PROTECTED] with body

Connection Pool Implementation using poolman

2000-07-20 Thread Chaturvedi, Sandeep (GEAE, Foreign National, Mastech)
I am trying to implement Connection Pooling using Poolman for our Intranet portal. If anyone has experience in implementing it (or some other way) in JSP please help. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "s

Re: Fwd: Re: Connection Pool

2000-06-30 Thread Sanjay Gomes
CTED]> >To: [EMAIL PROTECTED] >Subject: Fwd: Re: Connection Pool >Date: Fri, 30 Jun 2000 07:08:14 PDT > >I already have the properties file setup the way u had specified, > >I have the login bean for the initial database connection, then i get the >username and password ent

Re: Connection Pool

2000-06-30 Thread Jaffa, Dan
: Friday, June 30, 2000 10:08 AM To: [EMAIL PROTECTED] Subject: Fwd: Re: Connection Pool I already have the properties file setup the way u had specified, I have the login bean for the initial database connection, then i get the username and password entered and compare it with the values specified in

Re: Connection Pool

2000-06-30 Thread Raman Ravikumar
-Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Rupali Bains Goswami Sent: Friday, June 30, 2000 10:08 AM To: [EMAIL PROTECTED] Subject: Fwd: Re: Connection Pool I already have the properties file setup

Fwd: Re: Connection Pool

2000-06-30 Thread Rupali Bains Goswami
ages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: Connection Pool >Date: Fri, 30 Jun 2000 09:30:19 -0400 > >I am a little confused by your question but I will tell you what we have >been doing > >In our EJB's and

Re: Connection Pool

2000-06-30 Thread Robert Nicholson
mi > Sent: Friday, June 30, 2000 1:54 PM > To: [EMAIL PROTECTED] > Subject: Connection Pool > > > I Have a very basic question. > > I am using weblogic and have created the connection pool in the properties > file. > > How do i then connect to the database? should

  1   2   >