Skip to content
This repository was archived by the owner on Nov 16, 2020. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

RabbitMQ-Web-Stomp plugin
=========================

Expand All @@ -11,15 +10,14 @@ port 55674, for example a valid SockJS endpoint url may look like:

Once the server is started you should be able to establish a SockJS
connection to this url. You will be able to communicate using the
usual STOMP protocol over it. For example, a page using Jeff Mensnil's
usual STOMP protocol over it. For example, a page using Jeff Mesnil's
"stomp-websocket" project may look like this:


<script src="http://cdn.sockjs.org/sockjs-0.3.min.js"></script>
<script src="stomp.js"></script>
<script>
WebSocketStompMock = SockJS;

Stomp.WebSocketClass = SockJS;
var client = Stomp.client('http://127.0.0.1:55674/stomp');
[...]

Expand Down