OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2022-01-13 4545664bbece1b1b185945376b344b1660669a53
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Examples Using STOMP Over WebSockets</title>
    <!--[if lt IE 9]>
      <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <link href="css/bootstrap.min.css" rel="stylesheet">
    <link href="css/bootstrap.min.responsive.css" rel="stylesheet">
    <style type="text/css">
      body { padding-top: 80px; }
    </style>
  </head>
 
  <body>
    
    <div class="navbar navbar-fixed-top">
      <div class="navbar-inner">
        <div class="container">
          <a class="brand" href="#">Examples Using Stomp Over WebSocket</a>
        </div>
      </div>
    </div>
 
    <div class="container-fluid">
      <div class="row-fluid">
        <p>The <a href="/chat/">Chat example</a> shows how to use <code>stomp.js</code> to send and receive STOMP messages directly from the Web browser.</p>
        <p>The <a href="/webworker/">WebWorker example</a> uses a WebWorker instead to send and receive STOMP messages from the broker.</p>
      </div>
    </div>
  </body>
</html>