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

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

    [ https://issues.apache.org/jira/browse/FLEX-35032?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15149958#comment-15149958 ] 

Justin Mclean commented on FLEX-35032:
--------------------------------------

This is likely to be released to the person of AIR rather than Flex, can you try with the save version of AIR you were using with 4.14.1.

> 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)