Archived

This forum has been archived. Please start a new discussion on GitHub.

Active Connection Management

Hi all! Im need help.

I want test Active Connection Managment by next way:

Client side code:

...
checkedcast for senderOneWayPrx. //(connection establishment)
Thread.Sleep(25000);
senderOneWayPrx.initiateCallback("Message"); //send simple message on server
...

Server side in "config.server" I put Ice.ACM.Server = 10 #(after 10 sec any connection,that is not been used for ten seconds.)

but my server get "Message" from my client.

What i incorrect do? I think that, my connection is closed and re-establishment where i use proxy, but if message already in buffer? how make such test with message in buffer?

Please show example how work with Ice.ACM.Server, Ice.ACM.Client currently.