-
Notifications
You must be signed in to change notification settings - Fork 387
android client over https #106
Comments
hi, you sure you havn't error of handshaking ? . Because I have the same issue with Https ( works with http ). public class Socket implements IOCallback{
} hope it's help |
I have a similar issue, for the socket factory I use the default. SocketIO.setDefaultSSLSocketFactory(SSLContext.getDefault()); |
Same Issue here, used SocketIO.setDefaultSSLSocketFactory(SSLContext.getDefault()); after a NPE while handshake, it solved the issue but i get no output at all, no errors no logs for any Callbacks... |
This source uses an older version of https://github.com/TooTallNate/Java-WebSocket/commits/master underneath. You simply need to build its last version dated August 10, 2014 to get it work. The following needs to be changed in WebsocketTransport.java: From To These changes are already pushed as the following pull request: |
@temahussain good solution, thanks |
have been playing with your contribution and i found an issue while connecting android socketio client to node server (over https) .
When i am trying to connect android client no response is coming from server (no error, no exception), but same thing is working with simple java application.
Can you please find out why its not working with android.
The text was updated successfully, but these errors were encountered: