Ruby服务器+ ActionScript3

时间:2015-06-09 18:11:34

标签: ruby actionscript

我在ruby服务器上使用WebSocket。

require          'em-websocket'

def start_server(host, port)
  EM.run {
    EM::WebSocket.run(:host => host, :port => port) do |ws|
      ws.onopen {

      }
      ws.onmessage {
      }
      ws.onclose {

      }
    end
    puts 'Server is running at' + Time.now().to_s
  }
end

我需要从ActionScript客户端发送带有xml数据的请求。我怎么能这样做? 谢谢。

0 个答案:

没有答案