You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc/programming.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ Connections are handled via an |ab| ``connection`` object, which is created by
60
60
realm:"votesapp"
61
61
});
62
62
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.
64
64
* Since we're running our WAMP router locally, we use localhost (i.e. ``127.0.0.1``) as the **IP**.
65
65
* 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.)
66
66
* 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.
Copy file name to clipboardexpand all lines: doc/reference.rst
+30-2
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,7 @@ A new connection is created using
82
82
83
83
:returns: *object* - autobahn connection object
84
84
85
-
Example: **Create a new connection**
85
+
Example: **Create a new connection using WebSocket as a transport**
86
86
87
87
.. code-block:: javascript
88
88
@@ -91,6 +91,7 @@ Example: **Create a new connection**
91
91
realm:'realm1'
92
92
});
93
93
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`.
94
95
95
96
Connection Methods
96
97
++++++++++++++++++
@@ -151,15 +152,42 @@ The **connection close callback** is fired when the connection has been closed e
151
152
152
153
``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"``.
153
154
155
+
156
+
.. _connection-options:
157
+
154
158
Connection Options
155
159
++++++++++++++++++
156
160
157
161
The constructor of :js:func:`autobahn.Connection` provides various options.
158
162
159
163
**Required** options:
160
164
161
-
* ``url``: *string* - the WebSocket URL of the WAMP router to connect to, e.g. ``ws://myserver.com:8080/ws``
162
165
* ``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 =newautobahn.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.)
163
191
164
192
.. 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``.
0 commit comments