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: abstract class and heritage

2002-03-20 Thread Mark Childerson
You have to make a custom serializer/deserializer which sends, along with the data, the identity of the concrete class you want to instantiate. M. At 05:42 PM 3/20/02 +0100, you wrote: >Hello, > >is it possible to use abstract class or heritage with Soap ? >I have a abstract class Contrat and