stomp client, show JSON messages
authorgustavo <gu.martinm@gmail.com>
Sat, 27 Aug 2016 21:54:40 +0000 (23:54 +0200)
committergustavo <gu.martinm@gmail.com>
Sat, 27 Aug 2016 21:54:40 +0000 (23:54 +0200)
angularjs/stomp/src/stomp/app/example/example.controller.js

index 56b9d14..35c31c5 100644 (file)
 
     function errorCallback(error) {
       // display the error's message header:
-      if (error.headers) {
-        alert(error.headers.message);
-      } else {
-        alert(error);
-      }
+      alert('error call back: \n' + JSON.stringify(error, null, 4));
     }
 
     function subscribeCallback(message) {
       // called when the client receives a STOMP message from the server
-      if (message.body) {
-        alert('got message with body ' + message.body);
-      } else {
-        alert('got empty message');
-      }
+      alert('subscribe message: \n' + JSON.stringify(message, null, 4));
     }
 
     function disconnectCallback() {