Hello,
I am testing recovering connection feature using your debug build with trace enabled. I am doin this just by turning my LAN on and off. When my connection should be recovered i get auth_error instead. How can i solve this problem ?
Thanks.
Here is trace:
AppWarpTrace 14:05:47 GMT+0300:[Socket]Connected
AppWarpTrace 14:05:47 GMT+0300:[Request] Request Type : 1 Payload : {"apiKey":"6c76a632f9d4066bc6859730d1ac53b9d5e5cd15c62ea4adb62786e3abf5312e","signature":"EZLuw%2FIsEAuUBQsSo2fC2F9a3lw%3D","timeStamp":"2014-05-21T11:5:47.875Z","user":"123","recoverytime":30,"keepalive":60,"version":"AS_1.6"}
AppWarpTrace 14:05:48 GMT+0300:[Response] Request Type : 1 Result : 1 Payload : Incorrect Signature
onConnectDone 1
My onConnectDone listener looks like this:
private function onConnectDone(res:int):void
{
trace("onConnectDone " + res);
...
if(res == ResultCode.connection_error_recoverable)
{
WarpClient.getInstance().recoverConnection();
}
...
}