我在 RhoMobile 应用程序(Ruby 中的代码)中使用 TCPSocket 与桌面上运行的服务器通信(C#.Net 中的代码)
tcp_client = TCPSocket.new( '192.168.5.102', 13000 )
tcp_client.puts( "sending a test message to server" )
它Socket(2)
在执行TCPSocket.new
行时给了我一个错误。
使用Android Simulator 和 RhoSimulator,它运行良好。但对于Windows Mobile则不然。
我在网上做了很多搜索,尝试了很多示例,但没有找到解决方案。任何帮助将不胜感激,在此先感谢。
请帮忙..