Bad network data; terminating connection
Many times, each day, a notice this error in the event log :
each time after this error, the netconnection between the publisher and the server close. I have some log in my app who check the connectivity between the publisher and the server :
function threadIsPublisherOnline()
{
clearInterval(ptrThreadIsPublisherOnline);
if(!_root.nc.isConnected)
{
if(mustDisconnect)
{
trace("The server as close the connection, redirect the publisher");
getURL("closer.aspx?language=" + _root.Language);
}
mustDisconnect = true;
var ro:Object = new Object();
ro.onStatus = function(info)
{
trace("nc.isConnected is false and I can't receive the return of my server call, so I redirect the publisher");
getURL("closer.aspx?language=" + _root.Language);
}
ro.onResult = function(info)
{
mustDisconnect = false;
}
_root.nc.call("ack", ro);
}
I search over the internet and the only real info I found about it is on this site : your system has been port scanned or attacked
I just want to confirm if it's the real issue of this problem or if other thing can provide this result and how can I prevent the deconnection of the publisher if this append again?
Thanks
