Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
241 views
Welcome To Ask or Share your Answers For Others

1 Answer

jar file i was using for javax did not have getWebSocketContainer(); emplamented so it would return a null. I used a new jar file called try-standalone-client-1.9.jar problem fixed :)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...