AS3WebSocket icon indicating copy to clipboard operation
AS3WebSocket copied to clipboard

ActionScript 3 WebSocket client implementation for the final WebSocket Draft RFC6455

Results 8 AS3WebSocket issues
Sort by recently updated
recently updated
newest added

It's faster, more secure, and greatly reduces swf size. Apart from removing the hurlant files, the only real change is in WebSocket.as and it's actually quite small.

when I use the client to connect my websocket server , I got an error "TLSEngine shutdown triggered by Error: Excessive TLS Record length: 20527". then disconnected. I do not...

I would like to connect to a websocket server (Autobahn), and then subscribe to a channel. When I use this lib: ``` websocket = new WebSocket("wss://api.domain.com", "*", "wsservice"); websocket.addEventListener(WebSocketEvent.CLOSED, handleWebSocketClosed);...

Hi, I used this for quite a while in my project. Works great! However, we are now moving our server behind a CDN which allow only port 80 and 443....

I'm trying connect to Spring Boot server (v1.4.2, Tomcat 8.5.6) valid CA signed certificate (SHA256withRSA, SHA1withRSA, 2048) and GOT ALERT! type=40, which looks like handshake issue. Any insight is appreciated.

The code should be updated (perhaps on a separate branch?) to use the new native SecureSocket class available in Air and introduced in Flash Player 11. http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/SecureSocket.html

Its not connecting ... Am connecting to a websocket var net = require('net'); var http = require('http'); http.globalAgent.maxSockets = 1000; var server_port = 4000; function policy() { var xml =...

I made a multiplayer game and used this and it works great but when I embed the swf to my site it will no longer connect. When I click connect...