WebSocketSharp异常:System.PlatformNotSupportedException:'该平台不支持该操作。

时间:2019-07-09 14:25:05

标签: c# node.js websocket

我正在通过安全的Websocket与node.js服务器通信的C#应用​​程序中工作。还有一个javascript客户端连接到节点服务器上托管的同一websocket。 javascript客户端连接成功连接到节点服务器。但是,c#应用程序将引发标题中描述的错误。

我使用chrome的SimpleWebSocketClient扩展连接到我的套接字。这很好。 我还为C#应用程序尝试了websocket4net。这也不起作用。 我在我的C#应用​​程序中使用了wss://echo.websocket.org websocket,它运行良好。但是我必须设置_socket.SslConfiguration.EnabledSslProtocols = System.Security.Authentication.SslProtocols.tls12;

节点服务器

const app = require('express')()
const fs      = require("fs");        // file system core module
var https   = require("https").createServer({
    cert: fs.readFileSync(__dirname + "/certs/cert.pem"),
    key:  fs.readFileSync(__dirname + "/certs/key.pem")
}, app)
const express = require("express");   // web framework external module

// Setup and configure Express http server. Expect a subfolder called "static" to be the web root.
app.use(express.static(__dirname + "/static/"));

const ws = require('ws')
const wss = new ws.Server({
    server: https
});

wss.on('connection', function connection(ws) {
    ws.on('message', function incoming(message) {
        console.log('received: %s', message);
        ws.send('reply from server : ' + message)
    });

    ws.send('something');
});

// Listen on port 8080
https.listen(8080, () => {
    console.log('listening on https://localhost:8080')
})

这是C#代码

_socket = new WebSocket("wss://127.0.0.1:8080");

            _id = Guid.NewGuid().ToString();

            _socket.OnOpen += (sender, e) =>
            {
                Console.WriteLine("WebSocket Connection is now Open with ID: " + _id);


            };

            _socket.OnMessage += (sender, e) =>
            {
                Console.WriteLine("On Message");
                Console.WriteLine(e.Data);
            };

            _socket.Connect();

我很困惑为什么我的C#应用​​程序无法正常工作。它应该能够像建立wss://echo.websocket.org

一样建立连接

0 个答案:

没有答案