Skip to content

Commit d3a6eca

Browse files
author
Alexander Goedde
committed
adds documentation for long-poll transport
1 parent 9e439df commit d3a6eca

File tree

3 files changed

+32
-4
lines changed

3 files changed

+32
-4
lines changed

doc/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Features
8282
* supports WAMP v2, works with any WAMP server
8383
* works both in the browser and Node.js
8484
* provides asynchronous RPC and PubSub messaging patterns
85-
* uses WebSocket with a HTTP long-poll fallback
85+
* uses WebSocket or HTTP long-poll as transport
8686
* easy to use Promise-based API
8787
* pluggable promises/deferreds: use `when.js <https://github.com/cujojs/when>`_ (built-in), `jQuery <http://api.jquery.com/category/deferred-object/>`_ , `Dojo <http://dojotoolkit.org/reference-guide/1.7/dojo/Deferred.html>`_ , ECMA Script 6 or others
8888
* no dependencies

doc/programming.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Connections are handled via an |ab| ``connection`` object, which is created by
6060
realm: "votesapp"
6161
});
6262
63-
* WAMP uses WebSocket as its standard transport - so the url uses the ``ws`` **scheme** for WebSocket instead of ``http`` (or ``wss`` for secure WebSocket connections).
63+
* WAMP uses WebSocket as its standard transport - so the url uses the ``ws`` **scheme** for WebSocket instead of ``http`` (or ``wss`` for secure WebSocket connections). For using alternative transports see the :doc:`reference` for connection options.
6464
* Since we're running our WAMP router locally, we use localhost (i.e. ``127.0.0.1``) as the **IP**.
6565
* The **port** (``8080``) and **path** (``/ws``) for the WebSocket endpoint that we're connecting to can be configured in Crossbar.io, the WAMP router we are using. (This allows serving Web assets under different paths on the same IP.)
6666
* Each connection is connected to a **Realm**. A Realm is a routing namespace and an administrative domain for WAMP. For example, a single WAMP router can manage multiple Realms, and those realms are completely separate: an event published to topic T on a Realm R1 is NOT received by a subscribe to T on Realm R2.

doc/reference.rst

+30-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ A new connection is created using
8282

8383
:returns: *object* - autobahn connection object
8484

85-
Example: **Create a new connection**
85+
Example: **Create a new connection using WebSocket as a transport**
8686

8787
.. code-block:: javascript
8888
@@ -91,6 +91,7 @@ Example: **Create a new connection**
9191
realm: 'realm1'
9292
});
9393
94+
This is the brief syntax which uses the default WebSocket transport and just gives a single connection URL. You can alternatively define a list of transports to try successively - see :ref:`connection-options`.
9495

9596
Connection Methods
9697
++++++++++++++++++
@@ -151,15 +152,42 @@ The **connection close callback** is fired when the connection has been closed e
151152

152153
``details`` is an object containing the ``reason`` and ``message`` passed to :js:func:`autobahn.Connection.close`, and thus does not apply in case of ``"lost"`` or ``"unreachable"``.
153154

155+
156+
.. _connection-options:
157+
154158
Connection Options
155159
++++++++++++++++++
156160

157161
The constructor of :js:func:`autobahn.Connection` provides various options.
158162

159163
**Required** options:
160164

161-
* ``url``: *string* - the WebSocket URL of the WAMP router to connect to, e.g. ``ws://myserver.com:8080/ws``
162165
* ``realm``: *string* - The WAMP realm to join, e.g. ``realm1``
166+
* a target to connect to, for which there are two options:
167+
168+
* ``url``: *string* - the WebSocket URL of the WAMP router to connect to, e.g. ``ws://myserver.com:8080/ws`` via WebSocket, or
169+
* a list of transports to try successively
170+
171+
Supported transports are WebSocket and HTTP long-poll.
172+
173+
As an example, with the options below, |ab| first attempts to establish a WebSocket connection and if this fails a HTTP long-poll connection to the respective URLs given.
174+
175+
.. code-block:: javascript
176+
var connection = new autobahn.Connection({
177+
transports: [
178+
{
179+
'type': 'websocket',
180+
'url': 'ws://127.0.0.1:9000/ws'
181+
},
182+
{
183+
'type': 'longpoll',
184+
'url': 'http://127.0.0.1:9000/lp'
185+
}
186+
],
187+
realm: 'realm1'
188+
});
189+
190+
Not all WAMP routers support all transports, so take a look at the documentation for your router. (The above configuration with both WebSocket and HTTP long-poll on the same port is something which Crossbar.io allows.)
163191

164192
.. note:: We recommend that you use encrypted connections (using TLS). On the client side in |ab|, do this by setting the schema part of the connection URL to ``wss`` instead of ``ws``.
165193

0 commit comments

Comments
 (0)