Parcourir la source

Testing websocket security

Richard Knight il y a 5 ans
Parent
commit
89f24cbadb
2 fichiers modifiés avec 10 ajouts et 3 suppressions
  1. 1 1
      www/amp.html
  2. 9 2
      www/amp.js

+ 1 - 1
www/amp.html

@@ -18,7 +18,7 @@
     </style>
 </head>
 <body>
-    <h1>Websocket - targetting AMP running on http://localhost:8081/amp/websocket</h1>
+    <h1>Websocket - targeting AMP running on http://localhost:8081/amp/websocket</h1>
     <h3>
     Check the console to see messages after saving operators, games, chains and outlets.
     </h3>

+ 9 - 2
www/amp.js

@@ -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() {