Slow Connections

in Help Center
I am try to use Ice over a slow connection. It is a wireless connection that allows about 100kb/s or less. I have going through a Glacier2 Router and I have compression turned on, I see that the messages are compressed in the router output.
My client application is a Qt 4.3.x application that runs under Windows and my servers run under Linux. The problem I am having is that one of the 2 topics I am subscribed to stops publishing the slow connection. I get the data fine on faster networks but on the slow network it runs for a while then stops. I see the packets in the Glacier2 output, then one of them stops. The one that stops has small messages that are sent frequently and the one the continues has large amounts of data.
How can I maintain this connection?
Tim
My client application is a Qt 4.3.x application that runs under Windows and my servers run under Linux. The problem I am having is that one of the 2 topics I am subscribed to stops publishing the slow connection. I get the data fine on faster networks but on the slow network it runs for a while then stops. I see the packets in the Glacier2 output, then one of them stops. The one that stops has small messages that are sent frequently and the one the continues has large amounts of data.
How can I maintain this connection?
Tim
0
Comments
Why is the connection being dropped? If it is expected to go up & down then you need to add some application code to re-establish the glacier2 session if the connection is dropped. If it is expected not to go down then you should work out why its going down and fix that problem.
Tim
The delay was my problem. I was looking to be much faster that 60 seconds.
Thanks for the reply.