Hi Tony,
I think there is some misunderstanding. I'm requesting all services from the same JVM.
First I create a Service and a Call object for the first service and then for the second.
On the server-side I'm storing an object in the session and access it on each request.
When accessing the second service, the object is not in the session (return value is null).
Jochen
[EMAIL PROTECTED] wrote:
Jochen,
I suspect that you would have to keep the client JVM alive and make all service calls from that JVM, in order to maintain the session across different service calls. Using the HTTP sessions might work better, though I doubt it. Other than that, you'd probably have to write your own session handler (maybe as a subclass of the SimpleSessionHandler) that persisted the session ID on the client in some way.
Tony