Hi!
I'm trying to write a xmlrpc client that keeps a permanent connection to a server. Therefor i use XmlRpc.setKeepAlive(true). This works fine (the connection is kept open) if all requests are done without a delay between them. But if i do:
execute request #1 wait 5 seconds execute request #2
the client closes the connection before executing the second request.
Any ideas why the connection is closed?
Michael