Re: soap and connection pooling

2002-10-09 Thread Martin Gainty
.  _GMT-5___   >From: "Jonathan Roberts" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: Re: soap and connection pooling >Date: Thu, 10 Oct 2002 00:35:01 +0100 >MI

Re: soap and connection pooling

2002-10-09 Thread Jonathan Roberts
ED]> on 09/10/2002 17:48:59 > >Please respond to [EMAIL PROTECTED] > >To:[EMAIL PROTECTED] >cc: >Subject:Re: soap and connection pooling > > > >We handle this very issue by creating a singleton class which handles the >connection pool. The first time the s

Re: soap and connection pooling

2002-10-09 Thread Michael J Asbridge
g." Mark Childerson <[EMAIL PROTECTED]> on 09/10/2002 17:48:59 Please respond to [EMAIL PROTECTED] To:[EMAIL PROTECTED] cc: Subject:Re: soap and connection pooling We handle this very issue by creating a singleton class which handles the connection pool. The first time the

Re: soap and connection pooling

2002-10-09 Thread Scott Nichol
ober 09, 2002 12:17 PM Subject: soap and connection pooling > > Does anyone know if connection pooling is possible via soap. > > > My server side interface uses a bean which connects to a database. > > I'm presuming that soap runs on the server ( e.g.jrun ) and this server >

Re: soap and connection pooling

2002-10-09 Thread Mark Childerson
We handle this very issue by creating a singleton class which handles the connection pool. The first time the soap server class (ie, the bean in your case) is instantiated, it calls the connection pool for a connection. This starts up the pool, which handles the connections from then on. Every

soap and connection pooling

2002-10-09 Thread Jonathan Roberts
Does anyone know if connection pooling is possible via soap. My server side interface uses a bean which connects to a database. I'm presuming that soap runs on the server ( e.g.jrun ) and this server handles the pool of conenctions in the same way as if my bean was running withing jrun. any