Problem with Connection Pooling?

2004-02-12 Thread Vishal Arora
Please anyone knowing how to use the Connection Pooling in struts or Tomcat5.0 with Informix as database help me out.. Thanks in advance. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

RE: Connection Pooling

2003-12-18 Thread Edgar P Dollin
Drop connection pooling in struts and either go to Container pooling or use a product like Poolman (on sourceforge). Struts DataSource is no longer supported. Edgar -Original Message- From: hernux [mailto:[EMAIL PROTECTED] Sent: Thursday, December 18, 2003 1:39 AM To: [EMAIL

Connection Pooling

2003-12-17 Thread hernux
Hi all, I'm having problems with db pooling, in my sistem, there is a process that creates lot's of subsystems, and it opens lots of connections in the pool... I have to create 380 subsystems, but I can't create more than 4 at once.at number 5, pool dies .. out of conexions it sais.. So,

connection pooling issue

2003-12-04 Thread Ajay Kalidindi
Hi The issue is: 1. I restart tomcat, everything works good with tomcat, struts, connection pool ... I monitered the catalina.out log and all looks good connecting/releasing etc. 2. After few hours I get the following error : java.sql.SQLException: Communication link failure:

OT:Re: connection pooling issue

2003-12-04 Thread Vic Cekvenich
This is not a Struts question IMO. here is a FAQ for Wiki: #1. No one should use connection pool, if you want for some (I can't think of a good one myself) do low level JDBC, you should use data source. You can look up the data source via JNDI. Things like (low level) RowSet take a data

RE: Re: connection pooling issue

2003-12-04 Thread Ajay Kalidindi
connection pooling. Also it works perfect for few hours. I forgot to mention my database, it is mysql. Regards Ajay Kalidindi -Original Message- From: Vic Cekvenich [mailto:[EMAIL PROTECTED] Sent: Thursday, December 04, 2003 3:04 PM To: [EMAIL PROTECTED] Subject: OT:Re: connection pooling

Re: connection pooling issue

2003-12-04 Thread Vic Cekvenich
=password/ set-property property=url value=jdbc:mysql://localhost:3306/db/ set-property property=user value=user/ /data-source /data-sources above section in struts-config.xml is provided as part of struts to enable DB connection pooling. Also it works perfect for few hours. I forgot

Re: What's the best choice for connection pooling with Struts and PostgreSQL

2003-11-05 Thread Paul Thomas
On 04/11/2003 12:51 ZYD wrote: Thanks Paul, Could you please give me some code snippet about that factory parameter from the server.xml ? Thanks again. bruce ResourceParams name=jdbc/mytestDB parameter namefactory/name valueorg.apache.commons.dbcp.BasicDataSourceFactory/value

Re: [OT] Re: What's the best choice for connection pooling with Struts and PostgreSQL

2003-11-04 Thread ZYD
that implementation instead. - Original Message - From: David Graham [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, November 03, 2003 3:10 AM Subject: [OT] Re: What's the best choice for connection pooling with Struts and PostgreSQL --- ZYD [EMAIL PROTECTED] wrote

Re: What's the best choice for connection pooling with Struts and PostgreSQL

2003-11-04 Thread ZYD
Cekvenich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 03, 2003 3:18 AM Subject: Re: What's the best choice for connection pooling with Struts and PostgreSQL 1. It is a good practice to use the containers data source pool via JNDI. Application servers like Tomcat, Resin, OrionServer

Re: What's the best choice for connection pooling with Struts and PostgreSQL

2003-11-04 Thread Paul Thomas
On 04/11/2003 02:43 ZYD wrote: I tried to use Tomcat's datasource pool via JNDI, but things not going well. I got the following exception when I tried to get connection: org.apache.commons.dbcp.SQLNestedException: Cannot create JDBC driver of class ' ' for connect URL 'null', cause:

Re: What's the best choice for connection pooling with Struts and PostgreSQL

2003-11-04 Thread ZYD
. - Original Message - From: Paul Thomas [EMAIL PROTECTED] To: ZYD [EMAIL PROTECTED] Cc: struts-user [EMAIL PROTECTED] Sent: Wednesday, November 05, 2003 3:10 AM Subject: Re: What's the best choice for connection pooling with Struts and PostgreSQL On 04/11/2003 02:43 ZYD wrote: I

What's the best choice for connection pooling with Struts and PostgreSQL

2003-11-02 Thread ZYD
Dear all, I'm writing my Struts application using PostgreSQL as the backend database. Could you give me some advice on choosing the connection pooling framework/methods? I wrote my own connection pooling classes, but if there are some good frameworks from jakarta, it definitely worth a try

Re: What's the best choice for connection pooling with Struts and PostgreSQL

2003-11-02 Thread Nick Heudecker
as the backend database. Could you give me some advice on choosing the connection pooling framework/methods? I wrote my own connection pooling classes, but if there are some good frameworks from jakarta, it definitely worth a try. Any response is greatly appreciated. bruce -- Nick Heudecker

Re: What's the best choice for connection pooling with Struts and PostgreSQL

2003-11-02 Thread ZYD
Thanks Nick. What problem did you have with DBCP? bruce - Original Message - From: Nick Heudecker [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Sunday, November 02, 2003 11:26 PM Subject: Re: What's the best choice for connection pooling with Struts

[OT] Re: What's the best choice for connection pooling with Struts and PostgreSQL

2003-11-02 Thread David Graham
--- ZYD [EMAIL PROTECTED] wrote: Dear all, I'm writing my Struts application using PostgreSQL as the backend database. Could you give me some advice on choosing the connection pooling framework/methods? I wrote my own connection pooling classes, but if there are some good frameworks

Re: What's the best choice for connection pooling with Struts and PostgreSQL

2003-11-02 Thread Vic Cekvenich
PostgreSQL as the backend database. Could you give me some advice on choosing the connection pooling framework/methods? I wrote my own connection pooling classes, but if there are some good frameworks from jakarta, it definitely worth a try. Any response is greatly appreciated. bruce -- Victor

Re: How To Use Connection Pooling in Struts 1.1?

2003-10-01 Thread Adam Hardy
Hi Caroline, ideally you should keep your connection related objects in your business / model layer since it has nothing to do with the view or controller parts of your app. You can utilise the same tomcat JNDI set-up for the connection pool. Struts does have its own connection pooling

Re: Connection Pooling...

2003-09-30 Thread Navneet Karnani
I think the connection manager that struts ships with has primitive connection pooling built into it. Just read the docs. - Navneet Joseph William said the following on 30/09/2003 4:17 AM: Hello... I am developing a small application using Struts and am trying to connect with MYSQL... I got

Re: Connection Pooling...

2003-09-30 Thread Joseph William
: I think the connection manager that struts ships with has primitive connection pooling built into it. Just read the docs. - Navneet Joseph William said the following on 30/09/2003 4:17 AM: Hello... I am developing a small application using Struts and am trying to connect with MYSQL... I

How To Use Connection Pooling in Struts 1.1?

2003-09-30 Thread Caroline Jen
Before I started converting my web app to STRUTS, I used a DataSource to do connection pooling. I had the Tomcat server.xml file configured. My servlet accessed a helper class in which I had Context.lookup for the JNDI name. All worked well. Now that I am using STRUTS. I try to authenticate

Connection Pooling...

2003-09-29 Thread Joseph William
Hello... I am developing a small application using Struts and am trying to connect with MYSQL... I got it connected and even retrieved values by specifying the datasource in the struts-config file... Now, I am trying to put a common class for connection Pooling... I need to get the values

Re: Connection Pooling...

2003-09-29 Thread Kwok Peng Tuck
a small application using Struts and am trying to connect with MYSQL... I got it connected and even retrieved values by specifying the datasource in the struts-config file... Now, I am trying to put a common class for connection Pooling... I need to get the values like the max, min connections that I

Connection Pooling + User Authentication

2003-09-23 Thread Kapadia Mitesh-C23457
Hello. I would like to explore Connection Pooling as opposed to direct JDBC calls to an Oracle V8.1.6 database in a STRUTS application. The queries that are being executed have some kind of security built into them such that they only return results based on the User Id ( a look up of the User Id

Re: Connection Pooling + User Authentication

2003-09-23 Thread Kirk Wylie
Kapadia Mitesh-C23457 wrote: Hello. I would like to explore Connection Pooling as opposed to direct JDBC calls to an Oracle V8.1.6 database in a STRUTS application. Just for further clarification, are you talking about using the Struts Data Sources or something external to Struts, like

Re: Connection Pooling + User Authentication

2003-09-23 Thread Craig R. McClanahan
Kapadia Mitesh-C23457 wrote: Hello. I would like to explore Connection Pooling as opposed to direct JDBC calls to an Oracle V8.1.6 database in a STRUTS application. The queries that are being executed have some kind of security built into them such that they only return results based on the User

Re: Connection Pooling + User Authentication

2003-09-23 Thread Sgarlata Matt
- Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, September 23, 2003 1:41 PM Subject: Re: Connection Pooling + User Authentication For Oracle in particular, I've had a lot of success doing things based

Re: Connection Pooling + User Authentication

2003-09-23 Thread Christian Bollmeyer
. For details, you might want to give the documentation that accompanies the file a closer look. -- Chris Kapadia Mitesh-C23457 wrote: Hello. I would like to explore Connection Pooling as opposed to direct JDBC calls to an Oracle V8.1.6 database in a STRUTS application. The queries that are being

[OT] RE: Connection Pooling

2003-09-18 Thread Mainguy, Mike
Can any one explain,What does one mean by Connection Pooling? Is it advisable to prcatice Connection Pooling and if so,in WHAT CIRCUMSTANCES and Is there any aspect which should be kept in mind/taken care of while using Connection Pooing how connection pooling changes the working of an Web

Re: [OT] RE: Connection Pooling

2003-09-18 Thread Sgarlata Matt
Were the google resources no good? The DBCP front page also gives a good, though concise definition. Basically, if you have an app with more than 1 or 2 users you should definitely use it. Also, see post called Re: Connection Pooling by Kwok Peng Tuck earlier this week. Matt - Original

Re: Connection Pooling

2003-09-17 Thread Kwok Peng Tuck
Connection Pooling means to make available a pool of connections. In the case of a database it would be of course db connections. I think the front page of commons dbcp explains it pretty well : http://jakarta.apache.org/commons/dbcp/ Tomcat does ship with dbcp and you can configure

J2EE DAO Pattern Connection Pooling (struts-newbie)

2003-07-11 Thread jan . sandholm
to access Struts connection pooling? } public Object1DAO getObject1DAO() { return new MySQLObject1DAO(); } public Object2DAO getObject2DAO() { return new MySQLObject2DAO(); } } How do I access Struts connection pooling from data access layer? Is it even

RE: db connection pooling

2003-07-07 Thread Alex Shneyderman
Use jakarat DBCP. If you read thru tomcat's (that is if you use tomcat) howto's they explain how to set it up. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, July 07, 2003 12:39 AM To: [EMAIL PROTECTED] Subject: db connection pooling Hi

Re: db connection pooling

2003-07-07 Thread Craig R. McClanahan
On Mon, 7 Jul 2003 [EMAIL PROTECTED] wrote: Date: Mon, 7 Jul 2003 10:09:08 +0530 From: [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: db connection pooling Hi, Is there any ways to achieve db connection pooling and access

db connection pooling

2003-07-06 Thread jailani . s
Hi, Is there any ways to achieve db connection pooling and access of such pooled connection though jndi in struts action classes. Regards, Jailani.S This e-Mail may contain proprietary and confidential information and is sent for the intended recipient(s) only. If by an addressing

RE: db connection pooling

2003-07-06 Thread Navjot Singh
why not? Simply configure one jndi data source in struts-config and you are on. HTH -navjot |-Original Message- |From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] |Sent: Monday, July 07, 2003 10:09 AM |To: [EMAIL PROTECTED] |Subject: db connection pooling | | |Hi, | |Is there any ways

RE: db connection pooling

2003-07-06 Thread J, Sadhasivam (Cognizant)
That depends upon the Server Infrastruture. U can implement connection pooling and Datasournce throught the strutsconfig datasournce seqment. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, July 07, 2003 10:09 AM To: [EMAIL PROTECTED] Subject: db

Re: db connection pooling

2003-07-06 Thread Micael
Use a plugin. At 10:09 AM 7/7/03 +0530, you wrote: Hi, Is there any ways to achieve db connection pooling and access of such pooled connection though jndi in struts action classes. Regards, Jailani.S - To unsubscribe, e-mail

Re: Debugging Connection Pooling Problems? (dbcp, sybase)

2003-06-16 Thread Ted Husted
Setting a ping command should help. Kruse, Matt wrote: I'm using BasicDataSource, connecting to a Sybase11 server. It seems that every night, all idle connections are closed by the server (no app activity), but for some reason that's not detected by the connection pool. Our app hangs while trying

Debugging Connection Pooling Problems? (dbcp, sybase)

2003-06-09 Thread Kruse, Matt
Can anyone recommend a smart way to debug connection pooling issues? I'm using BasicDataSource, connecting to a Sybase11 server. It seems that every night, all idle connections are closed by the server (no app activity), but for some reason that's not detected by the connection pool. Our app

RE: [newbie] Connection Pooling

2003-02-13 Thread Siggelkow, Bill
Michael, You certainly can write a connection factory class that provides getConnection type methods -- I do this all the time to abstract the different ways of doing connection pooling -- sometimes I am using DataSources -- other times not. However, you should just use a regular class

[newbie] Connection Pooling

2003-02-12 Thread Andre Michel
Folks, quite new to Struts and it's way to JPS-Action-etc. chaining I'd like to know the following. Is their a way to keep open a certain connection to a database between two actions, e.g. I have a EditGetAction where I prepopulate a form, then show the jsp and make the user work and finally

RE: [newbie] Connection Pooling

2003-02-12 Thread Siggelkow, Bill
Andre ... this is not connection pooling -- but rather keeping a connection open. Yes it can be done ... however, HTTP is not a reliable connection and there is a good chance that your connection will get left open. However, it is time consuming to always have to open/close connections -- hence

RE: [newbie] Connection Pooling

2003-02-12 Thread Marco Tedone
To: Struts Users Mailing List Subject: [newbie] Connection Pooling Folks, quite new to Struts and it's way to JPS-Action-etc. chaining I'd like to know the following. Is their a way to keep open a certain connection to a database between two actions, e.g. I have a EditGetAction where I

RE: [newbie] Connection Pooling

2003-02-12 Thread David Graham
You can configure a DataSource in the struts-config.xml file that will return connections to you. You should not keep the connection open longer than needed and this means you shouldn't span action invocations. David Folks, quite new to Struts and it's way to JPS-Action-etc. chaining I'd

RE: [newbie] Connection Pooling

2003-02-12 Thread Bueno Carlos M
to the pool as soon as you're done with them. -- los -Original Message- From: Marco Tedone [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 4:35 PM To: Struts-user-list Subject: RE: [newbie] Connection Pooling You could write a PlugIn(new to Struts 1.1) to open a db

Re: [newbie] Connection Pooling

2003-02-12 Thread Micha Postupalski
database's user. If You use more database's users to connect to database I wouldn't used connection pooling. plastic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [newbie] Connection Pooling

2003-02-12 Thread Guido
context. I would remember to close it in the } destroy() method. } } Only an idea. } } Yes, it's a good idea. I use it sometimes but only when I have only one } database's user. If You use more database's users to connect to database } I wouldn't used connection pooling. } } plastic

Re: [newbie] Connection Pooling

2003-02-12 Thread Robert S. Sfeir
-400 DB users for big apps, and db vendors made a killing that way, with the poolers and web connection pooling, now you can run a busy app on 5 user connections and keep the load light on the DB. Anyway implementing the PlugIn is easier than anything I've done so far in Struts. I just

RE: [newbie] Connection Pooling

2003-02-12 Thread Marco Tedone
Yes, so do I. :-) Marco -Original Message- From: Micha³ Postupalski [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 10:00 PM To: Struts Users Mailing List Subject: Re: [newbie] Connection Pooling On 2/12/2003 10:34 PM, Marco Tedone wrote: You could write a PlugIn(new

Re: [newbie] Connection Pooling

2003-02-12 Thread Micha Postupalski
connection pooling. } } plastic Ups..I didn't express corectly. I mean I keep in the session context not certain connection but object which provides connection pooling. I have i.e. static method getConnection() which returns next connection from the pool. plastic

Re: [newbie] Connection Pooling

2003-02-12 Thread Zoran Avtarovski
Why wouldn't you use a simple update statement on the revised, validated data, rather than keeping the connection open for long? Z. Folks, quite new to Struts and it's way to JPS-Action-etc. chaining I'd like to know the following. Is their a way to keep open a certain connection to a

Re: MySQL connection pooling problems!! (please help)

2002-11-20 Thread Zsolt Koppany
Why don't you use the connection pool comming with struts? Zsolt On Tuesday 19 November 2002 23:42, James Ferguson wrote: Hi, You might like to look into the connection pooling software called PoolMan (for Pool Manager). I'm using it successfully with the MySQL driver. It's no longer

Re: MySQL connection pooling problems!! (please help)

2002-11-20 Thread andres garcia
Hi!! Actually, the problem was very silly and i have solved (i think!!) The struts connection pooling gives a ton of problems in development enviorement becuase I need to restart the tomcat when i make any changues to the classes. If I use reload from the manager, all the connections

Re: MySQL connection pooling problems!! (please help)

2002-11-20 Thread Mike Way
need to look that one up for yourself. Good luck Mike At 09:27 20/11/2002 -0500, you wrote: Hi!! Actually, the problem was very silly and i have solved (i think!!) The struts connection pooling gives a ton of problems in development enviorement becuase I need to restart the tomcat when i make

RE: MySQL connection pooling problems!! (please help)

2002-11-20 Thread edgar
I recommend caucho resin for development with connection pooling. Since the pool in built into the container it works beautifully in development. If you are going to sell your product there are license fees however. Edgar -Original Message- From: andres garcia [mailto:[EMAIL PROTECTED

Re: MySQL connection pooling problems!! (please help)

2002-11-20 Thread Dragan Ljubojevic
On Tuesday 19 November 2002 14:43, matthew yee-king wrote: You could try setting the autoReconnect parameter on the mysql url: jdbc:mysql://mydomain:3306/mydatabase?autoReconnect=true cheers matthew It's working. Now I dont have to reload application every morning. Thank you. Dragan

Re: MySQL connection pooling problems!! (please help)

2002-11-19 Thread Dragan Ljubojevic
I have same problem and only what I found is this: Segment from MySql documentation A.2.2  MySQL server has gone away Error: By default, the mysql server closes the connection after 8 hours if nothing has happened. You

Re: MySQL connection pooling problems!! (please help)

2002-11-19 Thread matthew yee-king
You could try setting the autoReconnect parameter on the mysql url: jdbc:mysql://mydomain:3306/mydatabase?autoReconnect=true cheers matthew On Tue, 19 Nov 2002 13:44:34 +0100 Dragan Ljubojevic [EMAIL PROTECTED] wrote: I have same problem and only what I found is this: Segment from MySql

MySQL connection pooling problems!! (please help)

2002-11-19 Thread James Ferguson
Hi, You might like to look into the connection pooling software called PoolMan (for Pool Manager). I'm using it successfully with the MySQL driver. It's no longer be worked on but it is quite mature code. Just hunt around with your favourite search engine and you should be able to find a copy

RE: MySQL connection pooling problems!! (please help)

2002-11-19 Thread edgar
:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 5:42 PM To: '[EMAIL PROTECTED]' Subject: MySQL connection pooling problems!! (please help) Hi, You might like to look into the connection pooling software called PoolMan (for Pool Manager). I'm using it successfully with the MySQL driver

Re: MySQL connection pooling problems!! (please help)

2002-11-19 Thread Scott Barr
, November 19, 2002 5:42 PM To: '[EMAIL PROTECTED]' Subject: MySQL connection pooling problems!! (please help) Hi, You might like to look into the connection pooling software called PoolMan (for Pool Manager). I'm using it successfully with the MySQL driver. It's no longer be worked

MySQL connection pooling problems!! (please help)

2002-11-18 Thread andres garcia
to install) Other question: The connection pooling must be supported by the driver or is independant? (i'm using the mm.mysql driver latest release) _ Charla con tus amigos en línea mediante MSN Messenger: http

RE: MySQL connection pooling problems!! (please help)

2002-11-18 Thread Míguel Ángel Mulero Martínez
]] Enviado el: lunes, 18 de noviembre de 2002 22:46 Para: [EMAIL PROTECTED] Asunto: MySQL connection pooling problems!! (please help) Hi. I'm new to struts, and i have find it great, until connection poolling. I'm using the GenericDataSurce implementation and my aplicattion uses a singleton

How to use datasource and db connection pooling in struts?

2002-10-15 Thread Stefan.Landro
Hi, there! How can I easily achieve database connection pooling (using a datasource in one of the xml config files - btw. which one is it?)? I know there is some stuff in jakarta-commons. What I want to achieve is an easy to configure and highly efficient db connection pool that is available

RE: How to use datasource and db connection pooling in struts?

2002-10-15 Thread Hajratwala, Nayan (N.)
] Subject: How to use datasource and db connection pooling in struts? Hi, there! How can I easily achieve database connection pooling (using a datasource in one of the xml config files - btw. which one is it?)? I know there is some stuff in jakarta-commons. What I want to achieve is an easy

RE: How to use datasource and db connection pooling in struts?

2002-10-15 Thread Adolfo Miguelez
, Nayan (N.) [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: How to use datasource and db connection pooling in struts? Date: Tue, 15 Oct 2002 10:42:13 -0400 you can use commons-dbcp ... see http

Re: How to use datasource and db connection pooling in struts?

2002-10-15 Thread David Graham
Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: How to use datasource and db connection pooling in struts? Date: Tue, 15 Oct 2002 16:40:27 +0200 Hi, there! How can I easily achieve database connection pooling (using a datasource in one of the xml config files - btw. which one

RE: How to use datasource and db connection pooling in struts?

2002-10-15 Thread Stefan.Landro
PROTECTED]] Sent: Dienstag, 15. Oktober 2002 16:42 To: 'Struts Users Mailing List' Subject: RE: How to use datasource and db connection pooling in struts? you can use commons-dbcp ... see http://jakarta.apache.org/commons/dbcp.html --- - Nayan Hajratwala - Chikli Consulting LLC - http://www.chikli.com

RE: How to use datasource and db connection pooling in struts?

2002-10-15 Thread David Graham
You can specify this in your struts-config.xml file for each webapp. Dave From: [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: How to use datasource and db connection pooling in struts? Date: Tue, 15 Oct 2002 17:14:29 +0200 If I'm

Re: How to use datasource and db connection pooling in struts?

2002-10-15 Thread Stefan.Landro
to use datasource and db connection pooling in struts? struts-config.xml is where you define your datasources. You specify the key to store the DataSource object under in the application scope so your actions can find it later. You also have to specify the DataSource implementation class to use

Re: How to use datasource and db connection pooling in struts?

2002-10-15 Thread Eddie Bush
For that one you need to play RTFM with your server docs. It should be possible, but the way you do it would be container-dependant. Tomcat will place a reference into JNDI for you - I assume (dangerous as it is) other will too. If you are using a different server than Tomcat, and it

RE: How to use datasource and db connection pooling in struts?

2002-10-15 Thread Stefan.Landro
the pool in the context. But with JNDI this should be easier. Stef. -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED]] Sent: Dienstag, 15. Oktober 2002 17:29 To: Struts Users Mailing List Subject: Re: How to use datasource and db connection pooling in struts? For that one you need

[OT] Re: How to use datasource and db connection pooling in struts?

2002-10-15 Thread David Graham
Yep, this is container dependant. Moving to OT thread... Dave From: Eddie Bush [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: How to use datasource and db connection pooling in struts? Date: Tue, 15 Oct 2002

Re: How to use datasource and db connection pooling in struts?

2002-10-15 Thread Eddie Bush
[EMAIL PROTECTED] wrote: If I'm getting this right, I could for instance configure tomcat (server.xml) to use this, and it will then be available in my webapp? Yes. See the HOWTOs on the site. Is there a way to configure in the web app itself? (web.xml or something?) see the site docs I

Re: How to use datasource and db connection pooling in struts?

2002-10-15 Thread Eddie Bush
I use Tomcat 100% of the time, so, no, I don't have code to initialize the data-source. Sorry :-( A ContextListener would also be another approach I forgot to mention. That's a servlet spec 2.3 thing - and would be even further independent of the particular app. Once written, you could

Datasource Access Options (was Connection Pooling)

2002-10-15 Thread Bradley G Smith
I spent much of yesterday using Google to glean information about configuring Struts (w/ Tomcat in my case) to use a datasource. As Eddie Bush points out in a prior post options for initializing a datasource (with or without a connection pool) include: 1. Tomcat JNDI service via server.xml; 2.

Re: Datasource Access Options (was Connection Pooling)

2002-10-15 Thread David Graham
and/or application specific approach. Dave From: Bradley G Smith [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Datasource Access Options (was Connection Pooling) Date: Tue, 15 Oct 2002 09:15:51 -0700 I spent much of yesterday

RE: Connection Pooling in Struts

2002-09-13 Thread Galbraith, Paul
connection pooling package instead (http://jakarta.apache.org/commons/dbcp.html). Paul -Original Message- From: Giancarlo Gallardo [mailto:[EMAIL PROTECTED]] Sent: September 12, 2002 6:03 PM To: [EMAIL PROTECTED] Subject: Connection Pooling in Struts Hi guys! I'm new to this list, so

Re: Struts Connection Pooling

2002-08-27 Thread faisal
Connection Pooling Anyone have experience with Struts Connection pooling? If so, was it a positive experience? Easy to use? Stable? Fast? How does it compare to something such as Poolman? And, does any MySQL driver out their provide comparable connection pooling? Thanks. Neal

Struts Connection Pooling

2002-08-19 Thread neal
Anyone have experience with Struts Connection pooling? If so, was it a positive experience? Easy to use? Stable? Fast? How does it compare to something such as Poolman? And, does any MySQL driver out their provide comparable connection pooling? Thanks. Neal -- To unsubscribe, e-mail

On a Tangent, Connection Pooling for UDB/400

2002-05-28 Thread hemant
Good Morning Comrades Pardon me for posting this post on a Struts group. This message is on a tangent as it discusses connection pooling and connections to UDB/400. I simply cound not resist it, I definitely know there are a quite a few of us who have faced this problem hence, requesting

What is the most viable OSS database connection pooling manager next to PoolMan?

2002-04-02 Thread @Basebeans.com
Subject: What is the most viable OSS database connection pooling manager next to PoolMan? From: Christopher Cheng [EMAIL PROTECTED] === The DBCP component is still in development? http://cvs.apache.org/viewcvs/jakarta-commons/dbcp/ does not even have a proper webpage. -- To unsubscribe, e

Struts connection pooling example?

2002-03-26 Thread @Basebeans.com
Subject: Struts connection pooling example? From: Preston Crawford [EMAIL PROTECTED] === Can anyone point me in the direction of a Struts connection pooling example? I'm trying to use Struts' built in connection pooling and can't find the correct documentation for this right now. Preston

connection pooling

2002-03-01 Thread bilal
Does anyone know of a decent (recommended for production) open source implementation of JDBC DataSource or so other connection pooling mechanism. thanks. bilal -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: connection pooling

2002-03-01 Thread Oliver Kiessler
poolman Am Fre, 2002-03-01 um 17.33 schrieb [EMAIL PROTECTED]: Does anyone know of a decent (recommended for production) open source implementation of JDBC DataSource or so other connection pooling mechanism. thanks. bilal -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

RE: connection pooling

2002-03-01 Thread Chappell, Simon P
Subject: Re: connection pooling poolman Am Fre, 2002-03-01 um 17.33 schrieb [EMAIL PROTECTED]: Does anyone know of a decent (recommended for production) open source implementation of JDBC DataSource or so other connection pooling mechanism. thanks. bilal -- To unsubscribe, e-mail

Re: connection pooling

2002-03-01 Thread Matt Raible
Most appservers have their own connection pooling built-in and automatic registration with JNDI. For instance, Tomcat 4.x uses Exolab's Tyrex (tyrex.exolab.org). This is probably your best solution, then you can just register your datasource as a resource entry in your web.xml and grab it using

Re: Poolman benefits? (was Re: Connection Pooling)

2002-02-04 Thread Jason B Menard
at a later date simple, and also ensures consistancy across the organization. Specifying all your connection pools in one place, even if there are different databases, is a nice benefit. It also makes it easier on the developers. Poolman does not do just connection pooling though

RE: Poolman benefits? (was Re: Connection Pooling)

2002-02-01 Thread Galbreath, Mark
Mailing List Subject: Poolman benefits? (was Re: Connection Pooling) cahana wrote: Have you tried Poolman to do your connection pooling? I've only taken a cursory look at Poolman and I'm a little unclear as to what benefits it provides. I'm using an Oracle server, and using the Oracle JDBC thin

Re: Connection Pooling

2002-02-01 Thread Larry Meadors
You could use Oracle's connection pooling. You can use either the oci or thin client (in fact, the jdbc url is the same for pooling). The only difference I saw was that you get connections from the pool instead of from the driver manager. The pool class

Re: Poolman benefits? (was Re: Connection Pooling)

2002-02-01 Thread Jason B Menard
the organization. Specifying all your connection pools in one place, even if there are different databases, is a nice benefit. It also makes it easier on the developers. Poolman does not do just connection pooling though, it will pool any object. We've been using it for a few versions now and have been

RE: Connection Pooling

2002-02-01 Thread Brad Rhoads
Does anyone know of any connection pooling solution that will work with any version of any database and with any application server? We found out we need to support Oracle 8.0 and the 8.0 drivers don't support JDBC 2.0 (please correct me if I'm wrong on this) so I was planning to put in PoolMan

RE: Connection Pooling

2002-02-01 Thread Galbreath, Mark
You are wrong on this. Oracle 8 drivers definitely support Java 2.0 and JDBC 2.0. Perhaps you have the wrong driver? http://otn.oracle.com/docs/products/oracle8i/doc_library/817_doc/java.817/a8 3724/overvw5.htm#1000974 Mark -Original Message- From: Brad Rhoads [mailto:[EMAIL

RE: Connection Pooling

2002-02-01 Thread Galbreath, Mark
Note that the email server butchered the URL: -Original Message- From: Galbreath, Mark Sent: Friday, February 01, 2002 11:00 AM To: 'Struts Users Mailing List' Subject: RE: Connection Pooling You are wrong on this. Oracle 8 drivers definitely support Java 2.0 and JDBC 2.0. Perhaps

RE: Connection Pooling

2002-02-01 Thread Brad Rhoads
. And just be clear, what I'm concerned about is connection pooling I want the same code to work for both 8.0 8i. So, does the JDBC Driver-Database Compatibility info say that I just need to use a different class file, say classess111, or that I can't do what I want w/ 8.0 or ??? -Original

RE: Connection Pooling

2002-02-01 Thread Galbreath, Mark
.x and prior versions. * The JDBC drivers do not support structured objects when run against an 8.0.x database. This is because JDBC depends on PL/SQL functions that did not exist in those releases. And just be clear, what I'm concerned about is connection pooling I want the same code to work

RE: Connection Pooling

2002-02-01 Thread Brad Rhoads
]] Sent: Friday, February 01, 2002 10:41 AM To: 'Struts Users Mailing List' Subject: RE: Connection Pooling Looks like you're screwed. I haven't used anything but 8i and SQL Server 7/2000 for over 2 years. If you can't get any solid info from Oracle or this list, scoot over to [EMAIL

Re: Poolman benefits? (was Re: Connection Pooling)

2002-02-01 Thread cahana
[EMAIL PROTECTED] Sent: Thursday, January 31, 2002 9:31 PM Subject: Poolman benefits? (was Re: Connection Pooling) cahana wrote: Have you tried Poolman to do your connection pooling? I've only taken a cursory look at Poolman and I'm a little unclear as to what benefits it provides. I'm using

Re: Connection Pooling

2002-02-01 Thread Thorbjørn Ravn Andersen
fredag februar 1 2002 kl. 05:21 PM skrev Brad Rhoads: That link was to info mostly about 8i (Build 8.1.7). I need it work w/ Build 8.0.5. * Different JDKs require different class files--classes in classes12.zip, classes111.zip, and classes102.zip, respectively This means that you need

  1   2   >