Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8">
- <title>Testing RabbitMQ Web Stomp</title>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
- <script src="http://cdn.sockjs.org/sockjs-0.3.min.js"></script>
- <script src="stomp.js"></script>
- <!-- Our example app -->
- <script src="listener-app.js"></script>
- <style>
- #output {
- border: 1px solid black;
- min-height: 100px;
- }
- #debug {
- border: 1px solid black;
- min-height: 100px;
- }
- </style>
- </head>
- <body>
- <h1>Waiting for messages</h1>
- <div id="output">
- <!-- incoming messages will be printed here -->
- </div>
- <h1>Debug Log</h1>
- <div id="debug" class="box">
- <!-- Logs will be printed here -->
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment