- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试了几个选项后,我无法在我的 Android 应用程序上接收到所有 SignalR 消息。在我看来,它似乎与 LongPollingTransport 有关,但我找不到解决方案......我收到所有 longPolling 消息,但有时它会进入处理程序,而其他时候它会尝试再次连接到服务器而不进入处理程序方法。
我尝试按照 here 上的示例进行操作.
代码很简单:
public void startNewSignalR(){
Platform.loadPlatformComponent(new AndroidPlatformComponent());
// Create a new console logger
Logger logger = new Logger() {
@Override
public void log(String message, LogLevel level) {
System.out.println(message);
}
};
Uri signalRSource = Uri.parse(serverUrl);
HubConnection connection = new HubConnection(signalRSource.toString(), "", true, logger);
eventHub = connection.createHubProxy("eventHub");
connection.error(new ErrorCallback() {
@Override
public void onError(Throwable error) {
System.err.println("There was an error communicating with the server.");
System.err.println("Error detail: " + error.toString());
error.printStackTrace(System.err);
}
});
// Subscribe to the connected event
connection.connected(new Runnable() {
@Override
public void run() {
System.out.println("CONNECTED");
}
});
// Subscribe to the closed event
connection.closed(new Runnable() {
@Override
public void run() {
System.out.println("DISCONNECTED");
}
});
eventHub.subscribe(new Object() {
@SuppressWarnings("unused")
public void receivePendingCountUpdate(String A) {
System.out.println("------------------------>>>>> Count: " + A);
}
});
// Start the connection
connection.start(new LongPollingTransport(logger))
.done(new Action<Void>() {
@Override
public void run(Void obj) throws Exception {
System.out.println("Done Connecting!");
eventHub.invoke("JoinGroup", "signalevents-" + userId + "-pendingcount");
}
});
}
在这里你还可以看到我收到的控制台输出,其中第一条消息没有进入方法,第二条消息进入:
02-18 16:23:08.954 6877-9048/com.sensingcontrol.android I/System.out﹕ HubConnection - Starting transport for Reconnection
02-18 16:23:10.307 6877-9031/com.sensingcontrol.android I/System.out﹕ longPolling - Trigger onData with data: {"C":"s-0,10BC5E0|1,264DB67|2,445369|3,106F98E|4,1EAF347","M":[{"H":"EventHub","M":"receivePendingCountUpdate","A":[208]}]}
02-18 16:23:10.307 6877-9031/com.sensingcontrol.android I/System.out﹕ HubConnection - Received data:
02-18 16:23:10.307 6877-9031/com.sensingcontrol.android I/System.out﹕ MessageId received: s-0,10BC5E0|1,264DB67|2,445369|3,106F98E|4,1EAF347
02-18 16:23:10.307 6877-9031/com.sensingcontrol.android I/System.out﹕ Invoking OnReceived with: null
02-18 16:23:10.307 6877-9031/com.sensingcontrol.android I/System.out﹕ HubConnection - Processing message
02-18 16:23:10.313 6877-9048/com.sensingcontrol.android I/System.out﹕ longPolling - Start the communication with the server
02-18 16:23:10.317 6877-9048/com.sensingcontrol.android I/System.out﹕ HubConnection - Getting connection data: [{"name":"eventhub"}]
02-18 16:23:10.317 6877-9048/com.sensingcontrol.android I/System.out﹕ longPolling - Execute the request
02-18 16:23:10.318 6877-9048/com.sensingcontrol.android I/System.out﹕ Create new thread for HTTP Connection
02-18 16:23:10.337 6877-9061/com.sensingcontrol.android I/System.out﹕ Execute the HTTP Request
02-18 16:23:10.337 6877-9061/com.sensingcontrol.android I/System.out﹕ URL: http://url/signalr/reconnect
02-18 16:23:10.342 6877-9061/com.sensingcontrol.android I/System.out﹕ VERB: GET
02-18 16:23:10.342 6877-9061/com.sensingcontrol.android I/System.out﹕ Header User-Agent: SignalR (lang=Java; os=android; version=2.0)
02-18 16:23:10.342 6877-9061/com.sensingcontrol.android I/System.out﹕ CONTENT: null
02-18 16:23:10.343 6877-9061/com.sensingcontrol.android I/System.out﹕ Request executed
02-18 16:23:10.498 6877-9061/com.sensingcontrol.android I/System.out﹕ HubConnection - Entered startLock after transport was started
02-18 16:23:10.498 6877-9061/com.sensingcontrol.android I/System.out﹕ HubConnection - Current state: Reconnecting
02-18 16:23:10.498 6877-9061/com.sensingcontrol.android I/System.out﹕ HubConnection - Starting Heartbeat monitor
02-18 16:23:10.498 6877-9061/com.sensingcontrol.android I/System.out﹕ HubConnection - Reconnected
02-18 16:23:10.498 6877-9061/com.sensingcontrol.android I/System.out﹕ longPolling - Response received
02-18 16:23:10.498 6877-9061/com.sensingcontrol.android I/System.out﹕ longPolling - Read response to the end
02-18 16:23:10.918 6877-9032/com.sensingcontrol.android I/System.out﹕ longPolling - Trigger onData with data: {"C":"s-0,10BC5E1|1,264DB67|2,44536B|3,106F98F|4,1EAF347","M":[{"H":"EventHub","M":"receivePendingCountUpdate","A":[208]}]}
02-18 16:23:10.918 6877-9032/com.sensingcontrol.android I/System.out﹕ HubConnection - Received data:
02-18 16:23:10.938 6877-9030/com.sensingcontrol.android I/System.out﹕ MessageId received: s-0,10BC5E1|1,264DB67|2,44536B|3,106F98F|4,1EAF347
02-18 16:23:10.938 6877-9030/com.sensingcontrol.android I/System.out﹕ Invoking OnReceived with: null
02-18 16:23:10.938 6877-9030/com.sensingcontrol.android I/System.out﹕ HubConnection - Processing message
02-18 16:23:10.940 6877-9047/com.sensingcontrol.android I/System.out﹕ longPolling - Start the communication with the server
02-18 16:23:10.955 6877-9047/com.sensingcontrol.android I/System.out﹕ HubConnection - Getting connection data: [{"name":"eventhub"}]
02-18 16:23:10.955 6877-9047/com.sensingcontrol.android I/System.out﹕ longPolling - Execute the request
02-18 16:23:10.979 6877-9046/com.sensingcontrol.android I/System.out﹕ Create new thread for HTTP Connection
02-18 16:23:10.989 6877-9074/com.sensingcontrol.android I/System.out﹕ Execute the HTTP Request
02-18 16:23:10.989 6877-9074/com.sensingcontrol.android I/System.out﹕ URL: http://url/signalr/reconnect
02-18 16:23:10.989 6877-9074/com.sensingcontrol.android I/System.out﹕ VERB: GET
02-18 16:23:10.997 6877-9073/com.sensingcontrol.android I/System.out﹕ Header User-Agent: SignalR (lang=Java; os=android; version=2.0)
02-18 16:23:10.997 6877-9073/com.sensingcontrol.android I/System.out﹕ CONTENT: null
02-18 16:23:10.998 6877-9073/com.sensingcontrol.android I/System.out﹕ Request executed
02-18 16:23:11.217 6877-9074/com.sensingcontrol.android I/System.out﹕ HubConnection - Entered startLock after transport was started
02-18 16:23:11.217 6877-9074/com.sensingcontrol.android I/System.out﹕ HubConnection - Current state: Reconnecting
02-18 16:23:11.218 6877-9074/com.sensingcontrol.android I/System.out﹕ HubConnection - Starting Heartbeat monitor
02-18 16:23:11.219 6877-9074/com.sensingcontrol.android I/System.out﹕ HubConnection - Reconnected
02-18 16:23:11.239 6877-9073/com.sensingcontrol.android I/System.out﹕ longPolling - Response received
02-18 16:23:11.239 6877-9073/com.sensingcontrol.android I/System.out﹕ longPolling - Read response to the end
02-18 16:23:12.721 6877-9067/com.sensingcontrol.android I/System.out﹕ HubConnection - Timeout
02-18 16:23:12.721 6877-9067/com.sensingcontrol.android I/System.out﹕ HubConnection - Stopping Heartbeat monitor
02-18 16:23:12.722 6877-9067/com.sensingcontrol.android I/System.out﹕ HubConnection - Restarting the transport
02-18 16:23:12.722 6877-9067/com.sensingcontrol.android I/System.out﹕ HubConnection - Entered startLock in startTransport
02-18 16:23:12.722 6877-9067/com.sensingcontrol.android I/System.out﹕ HubConnection - Starting the transport
02-18 16:23:12.722 6877-9067/com.sensingcontrol.android I/System.out﹕ HubConnection - Stopping heartbeat monitor
02-18 16:23:12.722 6877-9067/com.sensingcontrol.android I/System.out﹕ HubConnection - Clearing invocation callbacks: Reconnecting
02-18 16:23:12.723 6877-9067/com.sensingcontrol.android I/System.out﹕ HubConnection - Starting transport for Reconnection
02-18 16:23:14.073 6877-9061/com.sensingcontrol.android I/System.out﹕ longPolling - Trigger onData with data: {"C":"s-0,10BC5E7|1,264DB6C|2,445378|3,106F995|4,1EAF34C","M":[{"H":"EventHub","M":"receivePendingCountUpdate","A":[209]}]}
02-18 16:23:14.073 6877-9061/com.sensingcontrol.android I/System.out﹕ HubConnection - Received data:
02-18 16:23:14.074 6877-9061/com.sensingcontrol.android I/System.out﹕ MessageId received: s-0,10BC5E7|1,264DB6C|2,445378|3,106F995|4,1EAF34C
02-18 16:23:14.074 6877-9061/com.sensingcontrol.android I/System.out﹕ Invoking OnReceived with: null
02-18 16:23:14.123 6877-9073/com.sensingcontrol.android I/System.out﹕ HubConnection - Processing message
02-18 16:23:14.123 6877-9067/com.sensingcontrol.android I/System.out﹕ longPolling - Start the communication with the server
02-18 16:23:14.124 6877-9067/com.sensingcontrol.android I/System.out﹕ HubConnection - Getting connection data: [{"name":"eventhub"}]
02-18 16:23:14.124 6877-9067/com.sensingcontrol.android I/System.out﹕ longPolling - Execute the request
02-18 16:23:14.124 6877-9067/com.sensingcontrol.android I/System.out﹕ Create new thread for HTTP Connection
02-18 16:23:14.141 6877-9078/com.sensingcontrol.android I/System.out﹕ Execute the HTTP Request
02-18 16:23:14.141 6877-9078/com.sensingcontrol.android I/System.out﹕ URL: http://url/signalr/reconnect
02-18 16:23:14.141 6877-9078/com.sensingcontrol.android I/System.out﹕ VERB: GET
02-18 16:23:14.149 6877-9077/com.sensingcontrol.android I/System.out﹕ Header User-Agent: SignalR (lang=Java; os=android; version=2.0)
02-18 16:23:14.149 6877-9077/com.sensingcontrol.android I/System.out﹕ CONTENT: null
02-18 16:23:14.149 6877-9077/com.sensingcontrol.android I/System.out﹕ Request executed
02-18 16:23:14.267 6877-9079/com.sensingcontrol.android I/System.out﹕ HubConnection - Entered startLock after transport was started
02-18 16:23:14.267 6877-9079/com.sensingcontrol.android I/System.out﹕ HubConnection - Current state: Reconnecting
02-18 16:23:14.267 6877-9079/com.sensingcontrol.android I/System.out﹕ HubConnection - Starting Heartbeat monitor
02-18 16:23:14.268 6877-9079/com.sensingcontrol.android I/System.out﹕ HubConnection - Reconnected
02-18 16:23:14.271 6877-9077/com.sensingcontrol.android I/System.out﹕ longPolling - Response received
02-18 16:23:14.271 6877-9077/com.sensingcontrol.android I/System.out﹕ longPolling - Read response to the end
02-18 16:23:16.117 6877-9077/com.sensingcontrol.android I/System.out﹕ longPolling - Trigger onData with data: {"C":"s-0,10BC5F2|1,264DB6E|2,44537C|3,106F997|4,1EAF34E","M":[{"H":"EventHub","M":"receivePendingCountUpdate","A":[209]}]}
02-18 16:23:16.117 6877-9077/com.sensingcontrol.android I/System.out﹕ HubConnection - Received data:
02-18 16:23:16.118 6877-9077/com.sensingcontrol.android I/System.out﹕ MessageId received: s-0,10BC5F2|1,264DB6E|2,44537C|3,106F997|4,1EAF34E
02-18 16:23:16.136 6877-9077/com.sensingcontrol.android I/System.out﹕ Invoking OnReceived with: null
02-18 16:23:16.137 6877-9077/com.sensingcontrol.android I/System.out﹕ HubConnection - Processing message
02-18 16:23:16.137 6877-9077/com.sensingcontrol.android I/System.out﹕ HubConnection - Getting HubInvocation from message
02-18 16:23:16.138 6877-9077/com.sensingcontrol.android I/System.out﹕ HubConnection - Message for: eventhub
02-18 16:23:16.138 6877-9077/com.sensingcontrol.android I/System.out﹕ HubConnection - Invoking event: receivependingcountupdate with arguments [209]
02-18 16:23:16.138 6877-9077/com.sensingcontrol.android I/System.out﹕ HubProxy eventHub - Handling dynamic subscription: receivePendingCountUpdate
02-18 16:23:16.139 6877-9077/com.sensingcontrol.android I/System.out﹕ HubProxy eventHub - Invoking method for dynamic subscription: receivePendingCountUpdate
02-18 16:23:16.173 6877-9079/com.sensingcontrol.android I/System.out﹕ ------------------------>>>>> Count: 209
02-18 16:23:16.173 6877-9079/com.sensingcontrol.android I/System.out﹕ longPolling - Continue polling
最佳答案
我是 SignalR android 客户端方面的专家,我将向您展示执行此操作的最佳方法:
第 1 步:像这样配置你的集线器连接
private HubConnection _connection;
private HubProxy _hub;
String host = "http://www.thisisawebsite.net"; //The url from your web site
_connection = new HubConnection( host );
_hub = _connection.createHubProxy( "NameHub" ); //The name from your hub class in your server
第 2 步:
使用私有(private)方法或您想要的方式进行连接:
private SignalRFuture<Void> _awaitConnection;
private void startConnection(){
_awaitConnection = _connection.start(new LongPollingTransport(_connection.getLogger()));
//you can do here a while loop for reintents or something ( this is a good practices, at least 3 tries.
try {
_awaitConnection.get(2000,TimeUnit.MILLISECONDS);
escucharGrupos();
isConnected = true;
break;
} catch (InterruptedException e) {
System.out.println("Disconnect . . .");
} catch (ExecutionException e) {
System.out.println("Error . . .");
}catch(Exception e){}
}
如果这里的一切都是正确的,你可以打印类似 System.out.println("Connection done");这意味着您的客户端和服务器之间的持久连接已经完成并且正常。
第 3 步:配置处理程序:
我通常用一种方法来做到这一点:
private SubscriptionHandler1 handlerCon;
private void starHandlersConnection(){
handlerCon = new SubscriptionHandler1<String>() {
@Override
public void run(String p1) {
//Here is where we get back the response from the server. Do stuffs
}
};
_hub.on("NameOfFunctionOfYourHub",handlerCon,String.class);
}
按照所有这些步骤操作,这应该可以正常工作。
还有一个提示,让您的连接中心位于服务类中。您可以通过这种方式进行聊天,例如 whatsapp 或 telegram。
关于java - Android SignalR java 客户端 : Not receiving all the SignalR messages on the HubConnection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28587391/
我想知道如何存储在调用时可以触发到连接的客户端的变量服务器端? 我使用并发字典来跟踪连接 GUID 并想知道我是否可以在服务器上存储字符串或其他数据类型,例如最后 10 条消息,因此当出现新连接时,客
无法让 SignalR 在我的机器上工作(使用 IE9)。在输入一些文本并单击提交时,文本未按预期列出。另外,我希望从多个浏览器实例更新列表,但它不会发生。没有错误。有人可以帮忙吗? C# names
找到后this update围绕与组的通信,似乎一个组与集线器名称无关。如果这是正确的(如果我弄错了,请告诉我)集线器有什么方法可以访问另一个集线器的组,或者更好地拥有某种全局组? 我的问题是我有一个
抽象的 嗨,我在考虑是否可以使用 SignalR 发送消息。假设客户端断开连接,但最终在很短的时间内(例如 3 秒)重新连接。客户端会在断开连接时收到所有发送给他的消息吗? 例如,让我们考虑 Long
我正在为中等负载的 Web 应用程序评估 SignalR。 我们期望大约 500 条消息/秒,这对 SignalR 来说应该不是问题。 但是,我们担心此解决方案的可靠性。我们的环境有一个有问题的网络,
我有以下JS工作: var chat = $.connection.appHub; 我的应用程序有一个单一的中心AppHub,它处理两种类型的通知-Chat和Other。我使用一个集线器,因为我需要一
我升级到.NET 4.5,现在SignalR似乎坚持要在Firefox / Chrome中使用WebSockets-即使我只是在没有WebSocket Server的Windows 7上使用。 该请求
您能否在服务器端辨别给定的SignalR连接使用哪种传输方法? (WebSocket,SSE,长时间轮询等?) 最佳答案 在集线器内部,您可以通过查看请求的查询字符串来检测正在使用的传输: Conte
我在MVC4应用程序中使用Visual Studio 2012 Ultimate RC,SignalR 0.5.1和Jquery 1.7.2。 我看过:MVC4 SignalR "signalr/hu
假设我的网络连接中断了几秒钟,并且我错过了一些 SignalR 服务器推送的消息。 当我重新获得网络连接时,我错过的消息是否会丢失?或者当我重新连接时 signalR 会处理它们并将它们推出吗? 如果
如果我有一个 signalR 集线器,它向所有具有相当大的有效负载或私有(private)信息的客户端发送消息,那么所有连接到该集线器的客户端(同一组的一部分)是否都会收到消息,即使它们没有订阅客户端
如果我有一个 signalR 集线器,它向所有具有相当大的有效负载或私有(private)信息的客户端发送消息,那么所有连接到该集线器的客户端(同一组的一部分)是否都会收到消息,即使它们没有订阅客户端
谁能让我知道 SignalR 内部是如何以高级方式工作的? 我猜测它正在使用 Response.Flush 刷新数据,并且在客户端以一定的时间间隔发送 Ajax 请求。正确吗? 最佳答案 不,Sign
我正在使用 Microsoft SignalR 向浏览器推送通知。这些通知是由其他浏览器的操作触发的。我想做一个有时发送通知的后台任务。例如,在 12:45:21,我想向所有连接的用户发出通知,即使他
我的 SignalR 存在以下问题,用户从移动设备访问我的网站。 问题在于,当手机锁定或用户转到另一个应用程序时,会在服务器上触发 Disconnect() 方法(我尝试向服务器发送消息并等待它通过
如果我使用 SignalR 发送消息,客户端是否可能收不到消息?您如何验证通信中是否出现任何错误?我想在发送服务器通知后将消息发送回服务器,但有没有更好的方法? 最佳答案 是的,客户端可能没有收到消息
Web 服务器如何使用 SignalR 同步调用客户端上的方法?这里的关键部分是服务器应该等待客户端将数据发送回服务器才能继续? 基本上,我希望将客户端方法调用视为 WCF 服务请求。调用客户端并等待
我正在尝试调试 SignalR 连接问题,虽然我知道如何启用客户端日志记录,但我不知道如何启用服务器端日志记录。它似乎没有将任何内容记录到控制台。 我试过在 HubConfiguration 中使用
如果 SignalR 服务器的内部缓冲区溢出,则它似乎可以在将消息发送到客户端之前丢弃消息(请参阅 https://github.com/SignalR/SignalR/issues/2075 )。目
我在 Blazor 服务器端应用程序中使用 SignalR。我将 Microsoft.AspNetCore.SignalR.Client Nuget 包 (v5.0.11) 添加到项目中,并使用以下代
我是一名优秀的程序员,十分优秀!