|
@@ -1,15 +1,22 @@
|
|
|
var stompClient = null;
|
|
|
|
|
|
function connect() {
|
|
|
+
|
|
|
var socket = new SockJS('http://localhost:8081/amp/websocket');
|
|
|
stompClient = Stomp.over(socket);
|
|
|
+
|
|
|
stompClient.connect({}, function (frame) {
|
|
|
console.log('Connected: ' + frame);
|
|
|
- stompClient.subscribe('/channel/entity-events', function (msg) {
|
|
|
+ stompClient.subscribe('/public/transactions', function (msg) {
|
|
|
var msgJ = JSON.parse(msg.body);
|
|
|
- console.log(msgJ);
|
|
|
+ console.log('/public/transactions', msgJ);
|
|
|
+ });
|
|
|
+ stompClient.subscribe('/channel/transactions', function (msg) {
|
|
|
+ var msgJ = JSON.parse(msg.body);
|
|
|
+ console.log('/channel/transactions', msgJ);
|
|
|
});
|
|
|
});
|
|
|
+
|
|
|
}
|
|
|
|
|
|
function disconnect() {
|