android signal 密码忘记,在Android中实现Signal R

我已经尝试过以下方式,

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 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();,我的Android屏幕为全黑.应用程序运行正常,我不知道自己在做什么错.任何帮助将是非常可贵的

谢谢,古娜

解决方法:

当您通过调用“ get()”使连接同步时,它挂起了.

我遇到了类似的问题,在我的情况下,这是WebSockets的问题,必须回退到使用ServerSentEvents.

HubProxy hub = connection.createHubProxy("NotificationHub")

ClientTransport transport = new ServerSentEventsTransport(connection.getLogger());

SignalRFuture awaitConnection = connection.start(transport);

try {

awaitConnection.get();

}

catch (InterruptedException e) {

e.printStackTrace();

} catch (ExecutionException e) {

e.printStackTrace();

}

标签:signalr,android

来源: https://codeday.me/bug/20191121/2050822.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值