-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wss:// ssl support #23
Comments
I've tested this a bit and indeed it looks like using wss doesn't work. Actually the SocketRocket library should support secure websockets transparently. I'll try digging more into the issue. |
the point is, is the cert self-signed -i mean, you did not purchase it-? if so, i guess it may be the cause and i think the cause it's because the OS, security reasons.
|
@iamyellow Hi! We're using purchased one not self-signed one. |
@sf-jin-ku sounds silly, but... could you try if it works changing the schema? https instead of wss |
hi @iamyellow @omorandi ok here some code: Server site with nodejs: var io = require('socket.io')(); var http = require('http'); var fs = require('fs'); var app = http.createServer(ex); io.attach(app); app.listen(8000); Client Tiws site: socket = io.connect("https://host.url",{ }); Same Problem not connecting to ssl port... and this is ssl cert i have buy on a certify ssl company in the world. Thanks like this module... i need to implement this secure connections. |
@omorandi any luck with this issue? we're still struggling with it. We create a ws object like this. ws = require('net.iamyellow.tiws').createWS(); "ws://" works perfect but "wss://" doesn't work. |
any luck with this issue? |
Hi, Good wishes, jordi domenech |
Hi everyone, |
I've updated the iOS module to SocketRocket v0.4.2. It seems to work fine in my tests, please check it out. |
yep, seems to work properly now! Thank you so much =) |
Hi guys, I continue to have the problem with a .NET standard websocket server (windows server 2012)... APP.WS.open(myurl); and the response is [DEBUG] SecTrustEvaluate [leaf SSLHostname] any suggestions? |
Hi everyone, In my android wss it did not work . use android OS 5.1.3 |
Everything is working for me, both iOS and Android. SDK 5.5.1. Thanks! |
wss support not working on Android and SDK 6+ |
Hi @omorandi,
We have an issue when we use "wss://" with raw createWS() in iOS.
Websocket doesn't connect to server.
If we use "ws://", then everything looks fine.
Are there any known issue with it?
Thanks!
The text was updated successfully, but these errors were encountered: