You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flex.apache.org by "Mirza Ceyzar (JIRA)" <ji...@apache.org> on 2016/02/17 06:33:18 UTC

[jira] [Created] (FLEX-35032) SecureSocket Stopped working for android mobile projects

Mirza Ceyzar created FLEX-35032:
-----------------------------------

             Summary: SecureSocket Stopped working for android mobile projects
                 Key: FLEX-35032
                 URL: https://issues.apache.org/jira/browse/FLEX-35032
             Project: Apache Flex
          Issue Type: Bug
          Components: .Unspecified - Mobile
    Affects Versions: Apache Flex 4.15.0
         Environment: Android
            Reporter: Mirza Ceyzar
            Priority: Blocker
             Fix For: Apache Flex 4.14.1


After updating to 4.15, SecureSocket keep having IOError for Android Platform. Works ok on PC/iOS.
Problem are not present in 4.14.1.

code for reference:
-----------------------------------------------------------------
var URL:String = "the.url";
var PORT:int = 7777;
var skt:SecureSocket = new SecureSocket();
skt.addEventListener(Event.CONNECT, function(e:Event):void{
  skt.writeUTFBytes(JSON.stringify(obj));
});
skt.addEventListener(ProgressEvent.SOCKET_DATA, function(e:ProgressEvent):void{
   var response:String = skt.readUTFBytes(skt.bytesAvailable);
   trace(response);
});
skt.addEventListener(IOErrorEvent.IO_ERROR, function(e:IOErrorEvent):void{
   trace(ObjectUtil.toString(e));
});
skt.connect(URL, PORT);
-----------------------------------------------------------------



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)