Coder Social home page Coder Social logo

Comments (5)

doghappy avatar doghappy commented on August 18, 2024

Use a secure URL for your initial connection, i.e. instead of "http://" use "https://".

from socket.io-client-csharp.

bpcuong2013 avatar bpcuong2013 commented on August 18, 2024

But no way to import a certificate. The remote certificate is invalid according to the validation procedure.

System.Net.WebSockets.WebSocketException (0x80004005): Unable to connect to the remote server
---> System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception.

from socket.io-client-csharp.

doghappy avatar doghappy commented on August 18, 2024

Can you show me the server options?

Looks like this:

import * as https from "https";
// ...
const server = https.createServer({
    key: fs.readFileSync("cert/server-key.pem").toString(),
    cert: fs.readFileSync("cert/server-crt.pem").toString(),
    ca: fs.readFileSync("cert/ca-crt.pem").toString(),
    requestCert: true,
    rejectUnauthorized: true
});

The above code is the test I did, can you show your server?

from socket.io-client-csharp.

bpcuong2013 avatar bpcuong2013 commented on August 18, 2024

Sorry, I have no control on the server side.

from socket.io-client-csharp.

doghappy avatar doghappy commented on August 18, 2024

Refer to #68 (comment) , we can try to do this?

socket.Options.ClientCertificates.Add(cert);

from socket.io-client-csharp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.