在android中实现Signal R.

时间:2014-09-02 10:52:44

标签: android signalr

我试过以下方式,

import java.util.concurrent.ExecutionException;

import microsoft.aspnet.signalr.client.LogLevel;
import microsoft.aspnet.signalr.client.Logger;
import microsoft.aspnet.signalr.client.Platform;
import microsoft.aspnet.signalr.client.SignalRFuture;
import microsoft.aspnet.signalr.client.http.android.AndroidPlatformComponent;
import microsoft.aspnet.signalr.client.hubs.HubConnection;
import microsoft.aspnet.signalr.client.hubs.HubProxy;
import android.app.Activity;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.util.Base64;

public class HomeActivity2 extends Activity {
    /**
     * shared preference for access temp storage
     */
    private SharedPreferences settings;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_login);
        settings = getSharedPreferences(Utils.PREFS_NAME, 0);
        Platform.loadPlatformComponent(new AndroidPlatformComponent());
        String host = "MyURL";
        String CONNECTION_QUERYSTRING = "ClientID="
                + settings.getString("clientID", "") + "&RoleID="
                + settings.getString("roleID", "") + "&UserID="
                + settings.getString("employeeID", "");
        HubConnection connection = new HubConnection(host,
                Base64.encodeToString(CONNECTION_QUERYSTRING.getBytes(),
                        Base64.URL_SAFE | Base64.NO_WRAP), false, new Logger() {

                    @Override
                    public void log(String message, LogLevel level) {
                        // TODO Auto-generated method stub
                        System.out.println(message);
                    }
                });
        HubProxy hub = connection.createHubProxy("NotificationHub");
        SignalRFuture<Void> awaitConnection = connection.start();
        try {
            awaitConnection.get();
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (ExecutionException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
}

这是我的Logcat跟踪

HubConnection - Creating hub proxy: notificationhub
HubConnection - Entered startLock in start
HubConnection - Start the connection, using AutomaticTransport transport
HubConnection - Start negotiation
AutomaticTransport - Start the negotiation with the server
HubConnection - Getting connection data: [{"name":"notificationhub"}]
HubConnection - Getting connection data: [{"name":"notificationhub"}]
AutomaticTransport - Execute the request
Create new thread for HTTP Connection
Execute the HTTP Request
URL: http://citrusz.com/notification/signalr/negotiate?clientProtocol=1.3&connectionData=%5B%7B%22name%22%3A%22notificationhub%22%7D%5D&Q2xpZW50SUQ9Q0xOVEFBQUEwMDAxJlJvbGVJRD1ST0xFQUFBQTAwMDEmVXNlcklEPUVNUEFBQUEwMDAz
VERB: GET
Header User-Agent: SignalR (lang=Java; os=android; version=2.0)
CONTENT: null
Request executed
AutomaticTransport - Response received
AutomaticTransport - Read response data to the end AutomaticTransport - Trigger onSuccess with negotiation data: {"Url":"/notification/signalr","ConnectionToken":"SYqo8IyKwjb1zqPzDkPuVsMSrqgDmaQASB0Jirr1yUXRW698WbS8cM0BYuHdFQIEtQf5IYenCNp+1KV2EwUF7QOAcyaLbI4ohLiGKvf2umGn6+dbitwZcKLwjSCgJfpo","ConnectionId":"41c2e849-756f-4cb9-90fc-2688fdbbb619","KeepAliveTimeout":20.0,"DisconnectTimeout":30.0,"TryWebSockets":false,"ProtocolVersion":"1.3","TransportConnectTimeout":5.0}
HubConnection - Negotiation completed
HubConnection - ConnectionId: 41c2e849-756f-4cb9-90fc-2688fdbbb619
HubConnection - ConnectionToken: SYqo8IyKwjb1zqPzDkPuVsMSrqgDmaQASB0Jirr1yUXRW698WbS8cM0BYuHdFQIEtQf5IYenCNp+1KV2EwUF7QOAcyaLbI4ohLiGKvf2umGn6+dbitwZcKLwjSCgJfpo
HubConnection - Keep alive timeout: 20.0
HubConnection - Entered startLock in startTransport
HubConnection - Starting the transport
GC_CONCURRENT freed 620K, 12% free 6348K/7175K, paused 3ms+3ms
HubConnection - Starting transport for InitialConnection
serverSentEvents - Start the communication with the server
HubConnection - Getting connection data: [{"name":"notificationhub"}]
serverSentEvents - Execute the request
Create new thread for HTTP Connection
Execute the HTTP Request
URL: http://citrusz.com/notification/signalr/connect?transport=serverSentEvents&connectionToken=SYqo8IyKwjb1zqPzDkPuVsMSrqgDmaQASB0Jirr1yUXRW698WbS8cM0BYuHdFQIEtQf5IYenCNp%2B1KV2EwUF7QOAcyaLbI4ohLiGKvf2umGn6%2BdbitwZcKLwjSCgJfpo&connectionId=41c2e849-756f-4cb9-90fc-2688fdbbb619&connectionData=%5B%7B%22name%22%3A%22notificationhub%22%7D%5D&Q2xpZW50SUQ9Q0xOVEFBQUEwMDAxJlJvbGVJRD1ST0xFQUFBQTAwMDEmVXNlcklEPUVNUEFBQUEwMDAz
VERB: GET
Header Accept: text/event-stream
Header User-Agent: SignalR (lang=Java; os=android; version=2.0)
CONTENT: null
Request executed
threadid=3: reacting to signal 3
Wrote stack traces to '/data/anr/traces.txt'

我认为SignalR是连接的,但我的安卓屏幕是全黑的,如果我评论awaitConnection.get();应用程序工作正常,我不知道我做错了什么。任何帮助都会非常值得关注

谢谢,Guna

2 个答案:

答案 0 :(得分:3)

当你通过调用'get()'来实现连接同步时,它就会挂起。

我遇到了类似的问题,在我看来,这是WebSockets的一个问题,不得不回到使用ServerSentEvents。

HubProxy hub = connection.createHubProxy("NotificationHub")
ClientTransport transport = new ServerSentEventsTransport(connection.getLogger());

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

答案 1 :(得分:0)

您可能需要仔细检查开发环境以确保支持WebSockets。 Android设备支持WebSocket;但是,您的服务器可能没有。

Windows 8 / Server 2012及更高版本的IIS 8中开始支持WebSockets。

您的选择是:

  • 对于本地开发&amp;测试,至少使用Visual Studio 2013 Windows 8.1。
  • 对于生产,至少使用Windows Server 2012 * 与IIS 8。

* 要启用此功能,您可能需要转到Windows角色&amp;特点 - &gt;卷筒纸     服务器 - &gt;应用程序开发 - &gt;安装WebSockets。