I got some sample code from stack overflow for a websocket client. When it tries to connect I get a exception saying null pointer. I'm sending it a URI object, and it is not null. I doubled check to make sure the URI was correct. Also i was not able to finde the
stack trace
java.lang.RuntimeException: java.lang.NullPointerException at botserver.WebsocketClientEndpoint.(WebsocketClientEndpoint.java:31) at cMultiWindow.testWebSocket2(cMultiWindow.java:3758) at cMultiWindow.start(cMultiWindow.java:1363) at cStart.main(cStart.java:11) Caused by: java.lang.NullPointerException at botserver.WebsocketClientEndpoint.(WebsocketClientEndpoint.java:29)
Code
int ex=0;
URI ur;
try {
ur = new URI("wss://ws-feed.pro.coinbase.com");
// ur is not null
// line below causes exception
final WebsocketClientEndpoint
clientEndPoint = new WebsocketClientEndpoint(ur );
} catch(Exception e)
{
ex++;
}
See Question&Answers more detail:os