Actionscript xmlsocket 不读取由 nodejs 网络模块服务器写入的数据。但服务器正确读取数据。任何解决方案?

Actionscript xmlsocket doesn't read data which is write by the nodejs net module server. but server read the data correctly. any solution?

节点js网络模块服务器代码:

var net = require('net');
var server = net.createServer(function (connection) {
    console.log('client connected');

connection.on('data', function (data) {
    console.log('data from flash = ' + data);

    var jsonData = {};
    jsonData.message = "joined";

    var d = JSON.stringify(jsonData);

    connection.write(d);

});

connection.on('end', function () {
    console.log('client disconnected');
});

// connection.pipe(connection);
});
server.listen(3055, function () {
    console.log('server is listening');
});

动作脚本代码

this.login_socket.connect(this.server_ip,3055);
         this.login_socket.addEventListener(Event.CONNECT,this.login_socket_onConnection);
         this.login_socket.addEventListener(DataEvent.DATA,this.login_onData);
         this.login_socket.addEventListener(IOErrorEvent.IO_ERROR,this.login_socket_onIOErrorEvent);
         this.login_socket.addEventListener(SecurityErrorEvent.SECURITY_ERROR,this.login_socket_SecurityErrorEvent);
         this.login_socket.addEventListener(Event.CLOSE,this.login_socket_closeErrorEvent);

任何人都可以告诉我如何将 xml 套接字与节点 js 网络模块一起使用吗?我已经尝试了一切,但这根本不起作用。我想为 Flash 游戏创建到服务器的套接字连接。我正在使用 laravel 作为后端。如果有人知道如何使用 php 创建它,请告诉我。谢谢。

var net = require('net');

var server = net.createServer(function (connection) {

    console.log('client connected');

    connection.setEncoding("utf8");

    // on receive data from client
    connection.on('data', function (data) {

        console.log('data from flash = ' + data);

        var d = JSON.stringify({
            message: "joined"
        }) + "[=10=]";

        connection.write(d);
    });

    // on connection end
    connection.on('end', function () {
        console.log('client disconnected');
    });

    // on error
    connection.on("error", function (exception) {
        console.log('an error occurred: ' + exception);
    });
});

server.listen(3055, function () {
    console.log('server is listening');
});

我将 nodejs 服务器代码更改为上面的代码,现在可以正常工作了。