Git Product home page Git Product logo

Comments (6)

kum-deepak avatar kum-deepak commented on August 25, 2024

Not sure what may be the issue. The following will be helpful:

  • Have you tried it with other versions - like Angular 4?
  • I will like to see your Stomp Config

from ng2-stompjs.

vnobo avatar vnobo commented on August 25, 2024
  const stompConfig: StompConfig = {
          // Which server?
         url: 'ws://192.168.2.3:8080/charm-chat',

       // Headers
      // Typical keys: login, passcode, host
      headers: {
         'x-auth-token': AuthService.getToken()
      },

     // How often to heartbeat?
    // Interval in milliseconds, set to 0 to disable
    heartbeat_in: 0, // Typical value 0 - disabled
    heartbeat_out: 20000, // Typical value 20000 - every 20 seconds

    // Wait in milliseconds before attempting auto reconnect
    // Set to 0 to disable
   // Typical value 5000 (5 seconds)
   reconnect_delay: 5000,

  // Will log diagnostics on console
  debug: true

};

from ng2-stompjs.

kum-deepak avatar kum-deepak commented on August 25, 2024

Just by looking at the code - two potential reasons:

  • SockJS is a different protocol than WebSocket. The URL you are specifying is WebSocket (url: 'ws://192.168.2.3:8080/charm-chat') while the server seems to be configured for SockJS.
               public void registerStompEndpoints(StompEndpointRegistry registry) {
                            registry.addEndpoint("/charm-
                            chat").setAllowedOrigins("http://localhost:4200").withSockJS();
               }
  • Depending on which phase of the application you are using AuthService.getToken() - value may not be available.

from ng2-stompjs.

vnobo avatar vnobo commented on August 25, 2024

thank you
i find a bug?
see:
const stompConfig: StompConfig = {
// Which server?
url: 'ws://192.168.2.3:8080/charm-chat',

 // Headers
// Typical keys: login, passcode, host
headers: {
          'x-auth-token': AuthService.getToken(),
          'ssssss':'sss'
  },

    // How often to heartbeat?
   // Interval in milliseconds, set to 0 to disable
   heartbeat_in: 0, // Typical value 0 - disabled
   heartbeat_out: 20000, // Typical value 20000 - every 20 seconds

   // Wait in milliseconds before attempting auto reconnect
   // Set to 0 to disable
   // Typical value 5000 (5 seconds)
   reconnect_delay: 500000,

    // Will log diagnostics on console
    debug: true

};
look debug info:
GET ws://192.168.2.3:8080/charm-chat HTTP/1.1
Host: 192.168.2.3:8080
Connection: Upgrade
Pragma: no-cache
Cache-Control: no-cache
Upgrade: websocket
Origin: http://192.168.2.3:4200
Sec-WebSocket-Version: 13
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/62.0.3202.94 Safari/537.36
Accept-Encoding: gzip, deflate
Accept-Language: zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7
Sec-WebSocket-Key: epdDMjwi4d034g4FyosJcA==
Sec-WebSocket-Extensions: permessage-deflate; client_max_window_bits
Sec-WebSocket-Protocol: v10.stomp, v11.stomp, v12.stomp
look request headers is 'ssssss' 'x-auth-token' are none

from ng2-stompjs.

kum-deepak avatar kum-deepak commented on August 25, 2024

Actually it is not supposed to be sent those as part of HTTP headers. STOMP headers - from the STOMP Config - are sent as a CONNECT Frame - after the WebSocket handshake.

from ng2-stompjs.

vnobo avatar vnobo commented on August 25, 2024

thank you

from ng2-stompjs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.