I followed THIS tutorial to set up a .NET Backend for my Android app to implement Signal R. I set up a SignalR Self-Hosted backend.
Here\'s my Backend Code in a
I had similar issue a few days ago and this Github issue helped: https://github.com/SignalR/java-client/issues/63
Basically what I did was modify the WebsocketTransport.java in the signalr-client-sdk project. Replace:
uri = new URI(url);
with
uri = new URI(url.replace("http://", "ws://"));
around line 86 in the source code.
I can now connect and send message and recieve raw data but cannot subscribe to events...
Hope this helps you get passed your problem.