java websocket client does not recieve any messages from serverDoes a finally block always get executed in Java?How does the Java 'for each' loop work?How do I call one constructor from another in Java?How to get an enum value from a string value in Java?Why does Java have transient fields?Does Java support default parameter values?WebSockets vs. Server-Sent events/EventSourceWhat are Long-Polling, Websockets, Server-Sent Events (SSE) and Comet?Arduino websocket client and Tyrus websocket server message communication issue?WebSocket with multiple ClientEndpoints and binary messages

What does the multimeter dial do internally?

Why is a mixture of two normally distributed variables only bimodal if their means differ by at least two times the common standard deviation?

Tesco's Burger Relish Best Before End date number

Is space division multiplexing really multiplexing?

Does anyone have a method of differentiating informative comments from commented out code?

Is "wissen" the only verb in German to have an irregular present tense?

Intern not wearing safety equipment; how could I have handled this differently?

How do ballistic trajectories work in a ring world?

Why are co-factors 4 and 8 so popular when co-factor is more than one?

Curly braces adjustment in tikz?

Moving millions of files to a different directory with specfic name patterns

3-way switches no longer serving their purpose

How do resistors generate different heat if we make the current fixed and changed the voltage and resistance? Notice the flow of charge is constant

What was the significance of Spider-Man: Far From Home being an MCU Phase 3 film instead of a Phase 4 film?

Why does Trump want a citizenship question on the census?

What is the meaning of "prairie-dog" in this sentence?

Why do people prefer metropolitan areas, considering monsters and villains?

What are the effects of abstaining from eating a certain flavor?

Four ships at the ocean with the same distance

Users forgotting to regenerate PDF before sending it

Stop Gravel from Washing Away

Is it okay to use open source code to do an interview task?

Deck of Cards with Shuffle and Sort functionality

How do I use my adapted PS2 keyboard & mouse on a windows 10 computer?



java websocket client does not recieve any messages from server


Does a finally block always get executed in Java?How does the Java 'for each' loop work?How do I call one constructor from another in Java?How to get an enum value from a string value in Java?Why does Java have transient fields?Does Java support default parameter values?WebSockets vs. Server-Sent events/EventSourceWhat are Long-Polling, Websockets, Server-Sent Events (SSE) and Comet?Arduino websocket client and Tyrus websocket server message communication issue?WebSocket with multiple ClientEndpoints and binary messages






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have this websocket client, that connects to the server.



@ClientEndpoint
class WSClient
private static Object waitLock = new Object();

@OnMessage
public void onMessage(String message) throws IOException
System.out.println("Received msg: " + message);


private static void wait4TerminateSignal()
synchronized (waitLock)
try
waitLock.wait();
catch (InterruptedException e)




public static void main(String[] args)
WebSocketContainer container = null; //
Session session = null;
try
//Tyrus is plugged via ServiceLoader API. See notes above
container = ContainerProvider.getWebSocketContainer();
//WS1 is the context-root of my web.app
//ratesrv is the path given in the ServerEndPoint annotation on server implementation
session = container.connectToServer(WSClient.class, URI.create("ws://localhost:8080/websocket"));
// message of bytes
session.getAsyncRemote().sendBinary(ByteBuffer.wrap(bytes));
wait4TerminateSignal();
catch (Exception e)
e.printStackTrace();
finally
if (session != null)
try
session.close();
catch (Exception e)
e.printStackTrace();







Then, it sends a message that the server accepts and continues with the process. However the server sends back the response which should be handled by @OnMessage annotated method, however there is no response. Server code uses Spring and works properly - it sends messages to other clients as it should.



Thanks for help!










share|improve this question






























    0















    I have this websocket client, that connects to the server.



    @ClientEndpoint
    class WSClient
    private static Object waitLock = new Object();

    @OnMessage
    public void onMessage(String message) throws IOException
    System.out.println("Received msg: " + message);


    private static void wait4TerminateSignal()
    synchronized (waitLock)
    try
    waitLock.wait();
    catch (InterruptedException e)




    public static void main(String[] args)
    WebSocketContainer container = null; //
    Session session = null;
    try
    //Tyrus is plugged via ServiceLoader API. See notes above
    container = ContainerProvider.getWebSocketContainer();
    //WS1 is the context-root of my web.app
    //ratesrv is the path given in the ServerEndPoint annotation on server implementation
    session = container.connectToServer(WSClient.class, URI.create("ws://localhost:8080/websocket"));
    // message of bytes
    session.getAsyncRemote().sendBinary(ByteBuffer.wrap(bytes));
    wait4TerminateSignal();
    catch (Exception e)
    e.printStackTrace();
    finally
    if (session != null)
    try
    session.close();
    catch (Exception e)
    e.printStackTrace();







    Then, it sends a message that the server accepts and continues with the process. However the server sends back the response which should be handled by @OnMessage annotated method, however there is no response. Server code uses Spring and works properly - it sends messages to other clients as it should.



    Thanks for help!










    share|improve this question


























      0












      0








      0








      I have this websocket client, that connects to the server.



      @ClientEndpoint
      class WSClient
      private static Object waitLock = new Object();

      @OnMessage
      public void onMessage(String message) throws IOException
      System.out.println("Received msg: " + message);


      private static void wait4TerminateSignal()
      synchronized (waitLock)
      try
      waitLock.wait();
      catch (InterruptedException e)




      public static void main(String[] args)
      WebSocketContainer container = null; //
      Session session = null;
      try
      //Tyrus is plugged via ServiceLoader API. See notes above
      container = ContainerProvider.getWebSocketContainer();
      //WS1 is the context-root of my web.app
      //ratesrv is the path given in the ServerEndPoint annotation on server implementation
      session = container.connectToServer(WSClient.class, URI.create("ws://localhost:8080/websocket"));
      // message of bytes
      session.getAsyncRemote().sendBinary(ByteBuffer.wrap(bytes));
      wait4TerminateSignal();
      catch (Exception e)
      e.printStackTrace();
      finally
      if (session != null)
      try
      session.close();
      catch (Exception e)
      e.printStackTrace();







      Then, it sends a message that the server accepts and continues with the process. However the server sends back the response which should be handled by @OnMessage annotated method, however there is no response. Server code uses Spring and works properly - it sends messages to other clients as it should.



      Thanks for help!










      share|improve this question
















      I have this websocket client, that connects to the server.



      @ClientEndpoint
      class WSClient
      private static Object waitLock = new Object();

      @OnMessage
      public void onMessage(String message) throws IOException
      System.out.println("Received msg: " + message);


      private static void wait4TerminateSignal()
      synchronized (waitLock)
      try
      waitLock.wait();
      catch (InterruptedException e)




      public static void main(String[] args)
      WebSocketContainer container = null; //
      Session session = null;
      try
      //Tyrus is plugged via ServiceLoader API. See notes above
      container = ContainerProvider.getWebSocketContainer();
      //WS1 is the context-root of my web.app
      //ratesrv is the path given in the ServerEndPoint annotation on server implementation
      session = container.connectToServer(WSClient.class, URI.create("ws://localhost:8080/websocket"));
      // message of bytes
      session.getAsyncRemote().sendBinary(ByteBuffer.wrap(bytes));
      wait4TerminateSignal();
      catch (Exception e)
      e.printStackTrace();
      finally
      if (session != null)
      try
      session.close();
      catch (Exception e)
      e.printStackTrace();







      Then, it sends a message that the server accepts and continues with the process. However the server sends back the response which should be handled by @OnMessage annotated method, however there is no response. Server code uses Spring and works properly - it sends messages to other clients as it should.



      Thanks for help!







      java websocket






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 25 at 22:27









      aldi

      4711 gold badge5 silver badges19 bronze badges




      4711 gold badge5 silver badges19 bronze badges










      asked Mar 25 at 22:17









      JohnybJohnyb

      1541 gold badge1 silver badge11 bronze badges




      1541 gold badge1 silver badge11 bronze badges






















          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347205%2fjava-websocket-client-does-not-recieve-any-messages-from-server%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347205%2fjava-websocket-client-does-not-recieve-any-messages-from-server%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

          155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해