我可以使用SignalR JS库接收来自SignalR Hub的消息,但不能使用WebSocket。

huangapple go评论140阅读模式
英文:

I can receive messages from signalR hub with signalR js librayr, but not with WebSocket

问题

我尝试实现一种连接客户端到SignalR Hub的方式。
因为我想将其添加到使用rollup构建的库中(而它不是用rollup构建的),所以我不能只使用SignalR库。

对于测试,我有一个线程每10秒向所有客户端发送一条消息:

  1. Thread cyclicThread = ThreadUtils.GetCyclicThread(10000, () =>
  2. {
  3. this.NotificationHub.Clients.All.SendAsync("methodeTestBis", 239);
  4. });
  5. cyclicThread.Start();

使用SignalR库时,它可以工作,我可以在Chrome的调试器网络选项卡中看到消息。

  1. // 使用SignalR js库进行的测试,可以接收消息
  2. const connection = new signalR.HubConnectionBuilder().withUrl("/chatHub").build();
  3. connection.start();

网络选项卡,可以看到SignalR消息

但是当我使用WebSocket来处理来自SignalR Hub的消息时,它不起作用。
onopen函数被触发,但onmessage函数不会触发,并且我在网络选项卡中看不到与此WebSocket相关的消息。

  1. // 使用WebSocket进行的测试,无法接收消息
  2. let url = "https://localhost:7143/chatHub";
  3. const headers = {};
  4. const [name, value] = getUserAgentHeader();
  5. headers[name] = value;
  6. fetch(`${url}/negotiate?negotiateVersion=1`, {
  7. method: "POST",
  8. headers: {
  9. "Content-Type": "application/json",
  10. headers,
  11. },
  12. body: JSON.stringify({
  13. content: "",
  14. headers: headers,
  15. timeout: 100000,
  16. withCredentials: true,
  17. }),
  18. }).then((response) => response.json())
  19. .then((response) => {
  20. // 这里的fetch返回一些关于SignalR连接的信息,以及用于身份验证的令牌
  21. console.log(response);
  22. // SignalR连接的Web套接字
  23. const wsUrl = `${url}?id=${response.connectionToken}`.replace(/^http/, "ws");
  24. const webSocket = new WebSocket(wsUrl);
  25. webSocket.onopen = (event) => {
  26. // 它会触发
  27. console.log(event);
  28. }
  29. webSocket.onmessage = (message) => {
  30. // 它不会触发
  31. console.log(message);
  32. }
  33. webSocket.onerror = (event) => {
  34. console.log(event);
  35. console.log(event.error);
  36. }
  37. webSocket.onclose = (event) => {
  38. console.log(event);
  39. }
  40. });
  41. // 下面两个函数是来自SignalR的,用于测试和调试问题是什么
  42. function getUserAgentHeader() {
  43. let userAgentHeaderName = "X-SignalR-User-Agent";
  44. return [userAgentHeaderName, constructUserAgent("7.0.5", undefined, "Browser", undefined)];
  45. }
  46. function constructUserAgent(version, os, runtime, runtimeVersion) {
  47. // Microsoft SignalR/[Version] ([Detailed Version]; [Operating System]; [Runtime]; [Runtime Version])
  48. let userAgent = "Microsoft SignalR/";
  49. const majorAndMinor = version.split(".");
  50. userAgent += `${majorAndMinor[0]}.${majorAndMinor[1]}`;
  51. userAgent += ` (${version}; `;
  52. if (os && os !== "") {
  53. userAgent += `${os}; `;
  54. }
  55. else {
  56. userAgent += "Unknown OS; ";
  57. }
  58. userAgent += `${runtime}`;
  59. if (runtimeVersion) {
  60. userAgent += `; ${runtimeVersion}`;
  61. }
  62. else {
  63. userAgent += "; Unknown Runtime Version";
  64. }
  65. userAgent += ")";
  66. return userAgent;
  67. }

无法看到WebSocket消息的网络选项卡

有人知道我做错了什么吗?

这是获取SignalR库的链接:
https://cdnjs.cloudflare.com/ajax/libs/microsoft-signalr/6.0.1/signalr.js

我用于创建自己的WebSocket代码的代码位于第2251到2342行之间。

英文:

I try to implement a way to connect client to a signalR hub.
And I can't just take the SignalR library, because I want add this into library builded with rollup (And it's don't build with rollup)

For the tests, I have a Thread send a message to all clients every 10s :

  1. Thread cyclicThread = ThreadUtils.GetCyclicThread(10000, () =>
  2. {
  3. this.NotificationHub.Clients.All.SendAsync("methodeTestBis", 239);
  4. });
  5. cyclicThread.Start();

With signalR library, it's work, I can see messages in the network tab of Chrome's debugger.

  1. // Tests with signalR js library, messages receiving
  2. const connection = new signalR.HubConnectionBuilder().withUrl("/chatHub").build();
  3. connection.start();

Network tab where we can see messages with signalR

But when I use WebSocket to handle messages come from the signalR hub, it's not work.
The onopen function is triggered, but not the onmessage function, and I didn't see messages for this WebSocket inside the network tab.

  1. // Tests with WebSocket, messages not receiving
  2. let url = "https://localhost:7143/chatHub";
  3. const headers = {};
  4. const [name, value] = getUserAgentHeader();
  5. headers[name] = value;
  6. fetch(`${url}/negotiate?negotiateVersion=1`, {
  7. method: "POST",
  8. headers: {
  9. "Content-Type": "application/json",
  10. headers,
  11. },
  12. body: JSON.stringify({
  13. content: "",
  14. headers: headers,
  15. timeout: 100000,
  16. withCredentials: true,
  17. }),
  18. }).then((response) => response.json())
  19. .then((response) => {
  20. // The fetch return here some information about signalR connection, and the token for idendification
  21. console.log(response);
  22. // The web socket for SignalR's connection
  23. const wsUrl = `${url}?id=${response.connectionToken}`.replace(/^http/, "ws");
  24. const webSocket = new WebSocket(wsUrl);
  25. webSocket.onopen = (event) => {
  26. // It's triggered
  27. console.log(event);
  28. }
  29. webSocket.onmessage = (message) => {
  30. // It's not triggered
  31. console.log(message);
  32. }
  33. webSocket.onerror = (event) => {
  34. console.log(event);
  35. console.log(event.error);
  36. }
  37. webSocket.onclose = (event) => {
  38. console.log(event);
  39. }
  40. });
  41. // The next two functions is from signalR, used for tests and debug what's wrong
  42. function getUserAgentHeader() {
  43. let userAgentHeaderName = "X-SignalR-User-Agent";
  44. return [userAgentHeaderName, constructUserAgent("7.0.5", undefined, "Browser", undefined)];
  45. }
  46. function constructUserAgent(version, os, runtime, runtimeVersion) {
  47. // Microsoft SignalR/[Version] ([Detailed Version]; [Operating System]; [Runtime]; [Runtime Version])
  48. let userAgent = "Microsoft SignalR/";
  49. const majorAndMinor = version.split(".");
  50. userAgent += `${majorAndMinor[0]}.${majorAndMinor[1]}`;
  51. userAgent += ` (${version}; `;
  52. if (os && os !== "") {
  53. userAgent += `${os}; `;
  54. }
  55. else {
  56. userAgent += "Unknown OS; ";
  57. }
  58. userAgent += `${runtime}`;
  59. if (runtimeVersion) {
  60. userAgent += `; ${runtimeVersion}`;
  61. }
  62. else {
  63. userAgent += "; Unknown Runtime Version";
  64. }
  65. userAgent += ")";
  66. return userAgent;
  67. }

Network tab where we can't see messages with WebSocket

Someone know what I do wrong ?

There is the link to get the signalR library :
https://cdnjs.cloudflare.com/ajax/libs/microsoft-signalr/6.0.1/signalr.js

The code I use for make my own WebSocket's code is between lines 2251 and 2342

答案1

得分: 1

我找到了另一种修复我的问题的方法。

之前,在我的React库中,我使用以下导入信号R的方式:

  1. import signalR, { HubConnection } from "@microsoft/signalr";

现在,我使用以下导入方式,在我的库中使用npm run rollup可以正常工作:

  1. import * as signalR from "@microsoft/signalr";

我不再遇到错误消息:"default is not exported by @microsoft/signalr"。

英文:

I find another way to correct my issue.

Previously, in my react lirbary, I use the next line for import signalR :

  1. import signalR, { HubConnection } from "@microsoft/signalr";

And now, I use the follow import, and it's work with npm run rollup in my library :

  1. import * as signalR from "@microsoft/signalr";

And I don't have the error "default is not exported by @microsoft/signalr"

huangapple
  • 本文由 发表于 2023年6月16日 02:32:18
  • 转载请务必保留本文链接:https://go.coder-hub.com/76484567.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定