我编写了一个应用程序来通过 ClientWebSocket 连接到 WebSocket。这是 Asp.Net core 中中间件部分的设置:
app.Use(async(context,next) =>
{
if(context.WebSockets.IsWebSocketRequest)
{
if(context.Request.Path=="/wschat")
{
wsFunctions wsf = new wsFunctions();
await wsf.ListenAcceptAsync(context);
}
}
else
{
await next();
}
});
这是Android方面:
private async void btnConnect_OnClick(object sender, EventArgs e)
{
ClientWebSocket ws = new ClientWebSocket();
Uri serverUri = new Uri("ws://localhost:55104/wschat");
var source = new CancellationTokenSource();
source.CancelAfter(5000);
await ws.ConnectAsync(serverUri,source.Token);
}
当我单击客户端的连接按钮时,出现错误:“无法连接到远程服务器。”