使用 signalr 和 Java 客户端向 .net 服务器发送一个 json 对象
Send a json object to .net server using signalr and Java client
我正在使用 SignalR 5.0,我正在尝试从 Android 客户端发送一个 JSON。我调查了 this。但这对我不起作用,发送有效 我在测试中得到 json "{"Id":"123123","ReceviedDateTime":"Nov 23, 2020 12:50:55 PM","RepliedDatetime ":"2020 年 11 月 23 日 12:50:55 下午"}" 但从未调用 Pong 方法。添加
services.AddSignalR().AddJsonProtocol();在启动
乒乓球模特:
public class PongModel
{
public int Id { get; set; }
public int DeviceId { get; set; }
public string PhoneNumber { get; set; }
public DateTime SendDatetime { get; set; }
public DateTime ReceviedDateTime { get; set; }
public DateTime RepliedDatetime { get; set; }
}
Java代码:
方法(.net core 5)
public void Pong(PongModel pongModel)
{
}
public void Send(string test)
{
}
不序列化直接传递对象的例子:hubConnection.send("Pong", p);
添加此以获取绑定错误:
"Microsoft.AspNetCore.SignalR": "调试",
"Microsoft.AspNetCore.Http.Connections": "调试"
我正在使用 SignalR 5.0,我正在尝试从 Android 客户端发送一个 JSON。我调查了 this。但这对我不起作用,发送有效 我在测试中得到 json "{"Id":"123123","ReceviedDateTime":"Nov 23, 2020 12:50:55 PM","RepliedDatetime ":"2020 年 11 月 23 日 12:50:55 下午"}" 但从未调用 Pong 方法。添加 services.AddSignalR().AddJsonProtocol();在启动
乒乓球模特:
public class PongModel
{
public int Id { get; set; }
public int DeviceId { get; set; }
public string PhoneNumber { get; set; }
public DateTime SendDatetime { get; set; }
public DateTime ReceviedDateTime { get; set; }
public DateTime RepliedDatetime { get; set; }
}
Java代码:
方法(.net core 5)
public void Pong(PongModel pongModel)
{
}
public void Send(string test)
{
}
不序列化直接传递对象的例子:hubConnection.send("Pong", p); 添加此以获取绑定错误: "Microsoft.AspNetCore.SignalR": "调试", "Microsoft.AspNetCore.Http.Connections": "调试"