You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The URL constructor does not support the ws:// scheme, and would throw:
> java.net.MalformedURLException: unknown protocol: ws
Related:
- #650
- #555
- #233
The URL constructor does not support the ws:// scheme, and would throw:
> java.net.MalformedURLException: unknown protocol: ws
Related:
- #650
- #555
- #233
Backported from 67fd5f3
cedev935
added a commit
to cedev935/socket-java
that referenced
this issue
Sep 14, 2023
According to the documentation, there is no problem in using the WSS protocol
Socket socket = IO.socket("wss://example.com"); // OK, similar to the example above
But when I use it, it gives the following error:
java.lang.RuntimeException: java.net.MalformedURLException: unknown protocol: wss
Socket mSocket = IO.socket("wss://mydomain.com");
please help me
The text was updated successfully, but these errors were encountered: