Changeset 308 for branches/0.5/daemon/orbited/static/demos/stomp/index.html
- Timestamp:
- 06/24/08 03:05:50 (7 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/0.5/daemon/orbited/static/demos/stomp/index.html
r284 r308 5 5 <link rel="stylesheet" href="style.css"> 6 6 <title>JavaScript Stomp Test</title> 7 <script src="/static/BinaryTCP Connection.js"></script>7 <script src="/static/BinaryTCPSocket.js"></script> 8 8 <script src="shell.js"></script> 9 <script src=" stomp.js"></script>9 <script src="/static/protocols/stomp/stomp.js"></script> 10 10 <script> 11 11 onload = function() { … … 15 15 var s = new Shell(output) 16 16 print = s.print 17 ORBITED_PORT = 700017 // ORBITED_PORT = 8000 18 18 stomp = new STOMPClient() 19 19 stomp.onmessage = function(msg) { print(msg.body) }