使用SignalR连接到WinForm服务器?

时间:2015-02-21 19:24:11

标签: java android signalr signalr.client

我已经下载了SignalR的官方示例,当我尝试从WinFormsClient连接到WinFormsServer时,它工作正常。一切都很好......

我下载了SignalR for android并尝试使用下面的代码建立连接,但没有成功,所以...我只得到SocketTimeoutException。这是我的代码,也许有人可以帮助我!

我在真实的设备上尝试这个。 PC和设备都在同一个wifi网络上。

@Override
public void onClick(View v) {

    Platform.loadPlatformComponent(new AndroidPlatformComponent());
    String host = "http://192.168.0.11:8080/signalr";
    HubConnection connection = new HubConnection(host);
    HubProxy proxy = connection.createHubProxy("MyHub");

    SignalRFuture<Void> awaitConnection = connection.start();
    try {
        awaitConnection.get();
    } catch (InterruptedException e) {
        e.printStackTrace();
    } catch (ExecutionException e) {
        e.printStackTrace();
    }

    try {
        Thread.sleep(500);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }

    proxy.invoke("Send", new String[]{"Hahahahahhahaha", "shit shit shit!"});
    proxy.on("AddMessage", new SubscriptionHandler2<String, String>() {
        @Override
        public void run(String p1, String p2) {
            Log.d("result := ", p1 + " ---- " + p2);
        }
    }, String.class, String.class); }
});

1 个答案:

答案 0 :(得分:0)

您的防火墙可能会阻止连接。