Re: maintaing single db connection over multiple rpc calls

2002-08-26 Thread Scott Nichol
Rafi, To help investigate this, the following would be useful: 1. Versions of software used (Apache SOAP, Tomcat, JVM, etc.) for both LAN and WAN scenarios. Also, does your WAN connection go through a proxy. 2. Capture (e.g. using TcpTunnelGui) of a pair of messages that you expect to be in a s

Re: maintaing single db connection over multiple rpc calls

2002-08-26 Thread Mark Childerson
I had some trouble with the session scope of soap calls myself, so what I did was create a Singleton class to hold a pool of database connections. The SOAP server then runs with request scope and gets a connection from the pool. As well as solving the immediate problem, connection pooling like thi

Re: Can SOAP wrap around CORBA object requests ???

2002-08-26 Thread Scott Nichol
I've put together a quick example of using Apache SOAP to wrap a CORBA object: http://www.scottnichol.com/apachesoapcorba.htm Scott Nichol - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, August 23, 2002 12:36 PM Subject: RE: Can SOAP wrap around CORBA

cvs commit: xml-soap/java/src/org/apache/soap/providers CORBAProvider.java

2002-08-26 Thread snichol
snichol 2002/08/26 14:16:16 Modified:java/docs changes.html Added: java/src/org/apache/soap/providers CORBAProvider.java Log: Add a CORBA provider, allowing CORBA interfaces to be exposed via SOAP without writing any code. Revision ChangesPath 1.37 +2 -0

Re: Can SOAP wrap around CORBA object requests ???

2002-08-26 Thread Scott Nichol
I've added a few things. * I've added a CORBA provider to the CVS tree. * My Web page on using Apache SOAP with CORBA now includes a sample deployment descriptor for using the provider. Scott Nichol - Original Message - From: "Scott Nichol" <[EMAIL PROTECTED]> To: <

Re: Can SOAP wrap around CORBA object requests ???

2002-08-26 Thread Scott Nichol
-- can SOAP be used in DCE where initially CORBA is used? As now, every customer wants to access all the application over the Internet, and as CORBA object requests can not be passed through Firewall, customers want SOAP implementation around CORBA objects. One thing about your original

Re: Can SOAP wrap around CORBA object requests ???

2002-08-26 Thread Sanjiva Weerawarana
Wow, very cool Scott! I like this provider! Sanjiva. - Original Message - From: "Scott Nichol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 27, 2002 3:52 AM Subject: Re: Can SOAP wrap around CORBA object requests ??? > I've added a few things. > > * I've added

Re: maintaing single db connection over multiple rpc calls

2002-08-26 Thread Niclas Hedhman
We also have _some_ problem with SOAP Sessions, which are terminated a little bit by random. Even if we keep doing a dummy call every now and so often (1min), it happens that a new session is created. This is leading us to not trust Session, and are planning to introduce our own session handli