Some of my users are getting uncaught error in my Flex 4 application.
My Flex 4 application does some socket work.
However, this is the error they are getting:
15:21:43 UncaughtErrorListener: error; 1009; TypeError; Error #1009;
They are getting it shortly after my program executes mySocket.send(stringObject); where mySocket is initialized before by the following code:
myXMLSocket = new XMLSocket();
myXMLSocket.addEventListener(Event.CONNECT, sunSocketConnectedListener, false, 0, true);
myXMLSocket.addEventListener(DataEvent.DATA, dataReceivedListener, false, 0, true);
myXMLSocket.addEventListener(IOErrorEvent.IO_ERROR, sunSocketIOErrorListener, false, 0, true);
myXMLSocket.addEventListener(SecurityErrorEvent.SECURITY_ERROR, sunSocketSecurityErrorListener, false, 0, true);
myXMLSocket.addEventListener(Event.CLOSE, sunSocketCloseListener, false, 0, true);
myXMLSocket.timeout = 80000;
I am sending my data to XML Socket with the following way:
public static function mySend(dataObject:Object):void
{
try
{
trace("Encoding object");
var sunSocketString:String=com.adobe.serialization.json.JSON.encode(dataObject);
trace("Checking if socket is connected");
if (myXMLSocket.connected)
{
trace("Attempting to send");
myXMLSocket.send(sunSocketString);
trace("Sending is successful");
}
else
{
trace("Sending failed");
}
}
catch (ex:Error)
{
trace("Sending error");
}
}
Note that dataObject is never null, and that the JSON encoding never fails.
According to logs, this uncaught error exception comes after AS3 does myXMLSocket.send, but the error is not getting caught in mySend function, it goes uncaught application wise.
In logs,
I can see Attempting to send, then Sending is successful, and then 15:21:43 UncaughtErrorListener: error; 1009; TypeError; Error #1009;
Why is this happening? How do I properly handle this error and prevent it from occurring?
I have done extensive search on internet to no avail. I have also reported this issue to Adobe BugBase: https://bugbase.adobe.com/index.cfm?event=bug&id=3102766.
Thanks!