2

我们在我们的一个应用程序中使用 websocket-sharp,它与服务器上的 SignalR Hub 建立 websocket 连接,我们能够发送文本消息并接收相同的响应,但无法发布byte[].

将文本发送到服务器的代码是这样的:

public void TestGroupData(string groupname)
{
    DataCarrier dataCarrier = new DataCarrier()
    {
        H = "BILHub",
        M = "GetAllGroupsFor",
        A = new string[] { groupname }
    };
    string wsPacket = JsonConvert.SerializeObject(payLoad);
    this._ws.Send(wsPacket);
    //this.MakeServerCall(dataCarrier);
}

当我们尝试byte[]使用以下代码发送时,它不会通过:

public void TestFileData()
{
    try
    {
        // Read the file data
        Console.WriteLine("Started reading file");
        string fileName = @"C:\Saurabh\Data\Song.mp3";
        byte[] file = File.ReadAllBytes(fileName);
        DataCarrier dataCarrier = new DataCarrier()
        {
            H = "BILHub",
            M = "SendFile",
            A = new object[] { file }
        };
        string wsPacket = JsonConvert.SerializeObject(dataCarrier);
        this._ws.SendAsync(file , OnSendComplete);
    }
    catch (Exception ex)
    {
        Console.WriteLine(ex);
        //throw;
    }
}

有什么帮助吗?如何设置我的集线器名称_ws.sendAsync()

4

1 回答 1

8

发送大文件并不是 SignalR 的真正用途。

SignalR 适用于服务器和客户端之间的实时消息传递,适用于相当小的消息(因为消息大小对性能有真正的影响)。

对于这种需要,我会研究 ASP.NET Web API,特别是通过使用分块上传(将文件分成多个部分以避免连接中断)

于 2016-09-19T11:26:03.890 回答