WAMP Programming

This guide gives an introduction to programming with WAMP in Python using Autobahn. (Go straight to WAMP Examples)

WAMP provides two communication patterns for application components to talk to each other

and we will cover all four interactions involved in above patterns

  1. Registering Procedures for remote calling

  2. Calling Procedures remotely

  3. Subscribing to Topics for receiving events

  4. Publishing Events to topics

Note that WAMP is a “routed” protocol, and defines a Dealer and Broker role. Practically speaking, this means that any WAMP client needs a WAMP Router to talk to. We provide an open-source one called Crossbar (there are other routers available). See also the WAMP specification for more details

Tip

If you are new to WAMP or want to learn more about the design principles behind WAMP, we have a longer text here.


Application Components

WAMP is all about creating systems from loosely coupled application components. These application components are where your application-specific code runs.

A WAMP-based system consists of potentially many application components, which all connect to a WAMP router. The router is generic, which means, it does not run any application code, but only provides routing of events and calls.

These components use either Remote Procedure Calls (RPC) or Publish/Subscribe (PubSub) to communicate. Each component can do any mix of: register, call, subscribe or publish.

For RPC, an application component registers a callable method at a URI (“endpoint”), and other components call it via that endpoint.

In the Publish/Subscribe model, interested components subscribe to an event URI and when a publish to that URI happens, the event payload is routed to all subscribers:

Hence, to create a WAMP application, you:

  1. write application components

  2. connect the components to a router

Note that each component can do any mix of registering, calling, subscribing and publishing – it is entirely up to you to logically group functionality as suits your problem space.

Creating Components

There are two ways to create components using Autobahn. One is based on deriving from a particular class and overriding methods and the other is based on functions and decorators. The latter is the recommended approach (but note that many examples and existing code use the subclassing approach). Both are fine and end up calling the same code under the hood.

For both approaches you get to decide if you prefer to use Twisted or asyncio and express this through import. This is autobahn.twisted.* versus autobahn.asyncio.*

When using Twisted you import from autobahn.twisted.component:

from autobahn.twisted.component import Component

comp = Component(...)

@comp.on_join
def joined(session, details):
    print("session ready")

whereas when you are using asyncio:

 from autobahn.asyncio.component import Component

 comp = Component(...)

 @comp.on_join
 def joined(session, details):
     print("session ready")

As can be seen, the only difference between Twisted and asyncio is the import (line 1). The rest of the code is identical. For Twisted, you can use @inlineCallbacks or return Deferred from methods decorated with on_join; in Python 3 (with asyncio or Twisted) you would use coroutines (async def).

There are four “life cycle” events that Autobahn will trigger on your components: connect, join, leave, and disconnect. These all have corresponding decorators (or you can use code like comp.on('join', the_callback) if you prefer). We go over these events later.

Running Components

To actually make use of an application components, the component needs to connect to a WAMP router. Autobahn includes a run() function that does the heavy lifting for you.

 from autobahn.twisted.component import Component
 from autobahn.twisted.component import run

 comp = Component(
     transports=u"ws://localhost:8080/ws",
     realm=u"realm1",
 )

 @comp.on_join
 def joined(session, details):
     print("session ready")

 if __name__ == "__main__":
     run([comp])

and with asyncio:

 from autobahn.asyncio.component import Component
 from autobahn.asyncio.component import run

 comp = Component(
     transports=u"ws://localhost:8080/ws",
     realm=u"realm1",
 )

 @comp.on_join
 async def joined(session, details):
     print("session ready")

 if __name__ == "__main__":
     run([comp])

As can be seen, the only difference between Twisted and asyncio is the import (line 1 and 2). The rest of the code is identical.

The configuration of the component is specified when you construct it; the above is the bare minimum – you can specify many transports (which will be tried and re-tried in order) as well as authentication options, the realm to join, re-connection parameters, etcetera. See Component Configuration Options for details. A single Python program can run many different Component instances at once and you can interconnect these as you see fit – so a single program can have multiple WAMP connections (e.g. to different Realms or different WAMP routers) at once.

Tip

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.

Running Subclass-Style Components

You can use the same “component” APIs to run a component based on subclassing ApplicationSession. In older code it’s common to see autobahn.twisted.wamp.ApplicationRunner or autobahn.asyncio.wamp.ApplicationRunner. This runner lacks many of the options of the autobahn.twisted.component.run() or autobahn.asyncio.component.run() functions, so although it can still be useful you likely want to upgrade to run().

All you need to do is set the session_factory of a autobahn.twisted.component.Component instance to your autobahn.twisted.wamp.ApplicationSession subclass (or pass it as a kwarg when creating the Component)

comp = Component(
    session_factory=MyApplicationSession,
)

Patterns for More Complicated Applications

Many of the examples in this documentation use a decorator style with fixed, static WAMP URIs for registrations and subscriptions. If you have a more complex application, you might want to create URIs at run-time or link several Component instances together.

It is important to remember that Component handles re-connection – this implies there are times when your component is not connected. The on_join handlers are run whenever a fresh WAMP session is started, so this is the appropriate way to hook in “initialization”-style code (on_leave is where “un-initialization” code goes). Note that each new WAMP session will use a new instance of ApplicationSession.

Here’s a slightly more complex example that is a small Klein Web application that publishes to a WAMP session when a certian URL is requested (note that the Crossbario.io router supports various REST-style integrations already). Using a similar pattern, you could tie together two or more Component instances (even connecting to two or more different WAMP routers).

from autobahn.twisted.component import Component
from twisted.internet.defer import inlineCallbacks, Deferred
from twisted.internet.endpoints import TCP4ServerEndpoint
from twisted.web.server import Site
from twisted.internet.task import react


# pip install klein
from klein import Klein


class WebApplication(object):
    """
    A simple Web application that publishes an event every time the
    url "/" is visited.
    """
    def __init__(self, app, wamp_comp):
        self._app = app
        self._wamp = wamp_comp
        self._session = None  # "None" while we're disconnected from WAMP router

        # associate ourselves with WAMP session lifecycle
        self._wamp.on('join', self._initialize)
        self._wamp.on('leave', self._uninitialize)
        # hook up Klein routes
        self._app.route("/", branch=True)(self._render_slash)

    def _initialize(self, session, details):
        print("Connected to WAMP router")
        self._session = session

    def _uninitialize(self, session, reason):
        print(session, reason)
        print("Lost WAMP connection")
        self._session = None

    def _render_slash(self, request):
        if self._session is None:
            request.setResponseCode(500)
            return b"No WAMP session\n"
        self._session.publish("com.myapp.request_served")
        return b"Published to 'com.myapp.request_served'\n"


@inlineCallbacks
def main(reactor):
    component = Component(
        transports="ws://localhost:8080/ws",
        realm="crossbardemo",
    )
    app = Klein()
    webapp = WebApplication(app, component)

    # have our Web site listen on 8090
    site = Site(app.resource())
    server_ep = TCP4ServerEndpoint(reactor, 8090)
    port = yield server_ep.listen(site)
    print("Web application on {}".format(port))

    # we don't *have* to hand over control of the reactor to
    # component.run -- if we don't want to, we call .start()
    # The Deferred it returns fires when the component is "completed"
    # (or errbacks on any problems).
    comp_d = component.start(reactor)

    # When not using run() we also must start logging ourselves.
    import txaio
    txaio.start_logging(level='info')

    # If the Component raises an exception we want to exit. Note that
    # things like failing to connect will be swallowed by the
    # re-connection mechanisms already so won't reach here.

    def _failed(f):
        print("Component failed: {}".format(f))
        done.errback(f)
    comp_d.addErrback(_failed)

    # wait forever (unless the Component raises an error)
    done = Deferred()
    yield done


if __name__ == '__main__':
    react(main)

Longer Example

Here is a more-complete example showing some of the options you can pass when setting up a Component. This example can be run against the Crossbar.io router configuration that comes with Autobahn – just run crossbar start in examples/router/ in your clone.

Twisted:

from autobahn.twisted.component import Component, run
from autobahn.twisted.util import sleep
from autobahn.wamp.types import RegisterOptions
from twisted.internet.defer import inlineCallbacks, returnValue

# to see how this works on the Crossbar.io side, see the example
# router configuration in:
# https://github.com/crossbario/autobahn-python/blob/master/examples/router/.crossbar/config.json

component = Component(
    # you can configure multiple transports; here we use two different
    # transports which both exist in the demo router
    transports=[
        {
            "type": "websocket",
            "url": "ws://localhost:8080/auth_ws",
            "endpoint": {
                "type": "tcp",
                "host": "localhost",
                "port": 8080,
            },
            # you can set various websocket options here if you want
            "options": {
                "open_handshake_timeout": 100,
            }
        },
    ],
    # authentication can also be configured (this will only work on
    # the demo router on the first transport above)
    authentication={
        "cryptosign": {
            'authid': 'alice',
            # this key should be loaded from disk, database etc never burned into code like this...
            'privkey': '6e3a302aa67d55ffc2059efeb5cf679470b37a26ae9ac18693b56ea3d0cd331c',
        }
    },
    # must provide a realm
    realm="crossbardemo",
)


@component.on_join
@inlineCallbacks
def join(session, details):
    print("joined {}: {}".format(session, details))
    yield sleep(1)
    print("Calling 'com.example'")
    res = yield session.call("example.foo", 42, something="nothing")
    print("Result: {}".format(res))
    yield session.leave()


@component.register(
    "example.foo",
    options=RegisterOptions(details_arg='details'),
)
@inlineCallbacks
def foo(*args, **kw):
    print("foo called: {}, {}".format(args, kw))
    for x in range(5, 0, -1):
        print("  returning in {}".format(x))
        yield sleep(1)
    print("returning '42'")
    returnValue(42)


if __name__ == "__main__":
    run([component])

The Python3 / asyncio version of the same example is nearly identical except for some imports (and the use of async def instead of Twisted’s decorators):

asyncio:

from autobahn.asyncio.component import Component, run
from asyncio import sleep
from autobahn.wamp.types import RegisterOptions

# to see how this works on the Crossbar.io side, see the example
# router configuration in:
# https://github.com/crossbario/autobahn-python/blob/master/examples/router/.crossbar/config.json

component = Component(
    # you can configure multiple transports; here we use two different
    # transports which both exist in the demo router
    transports=[
        {
            "type": "websocket",
            "url": "ws://localhost:8080/auth_ws",
            "endpoint": {
                "type": "tcp",
                "host": "localhost",
                "port": 8080,
            },
            # you can set various websocket options here if you want
            "options": {
                "open_handshake_timeout": 100,
            }
        },
    ],
    # authentication can also be configured (this will only work on
    # the demo router on the first transport above)
    authentication={
        "cryptosign": {
            'authid': 'alice',
            # this key should be loaded from disk, database etc never burned into code like this...
            'privkey': '6e3a302aa67d55ffc2059efeb5cf679470b37a26ae9ac18693b56ea3d0cd331c',
        }
    },
    # must provide a realm
    realm="crossbardemo",
)


@component.on_join
async def join(session, details):
    print("joined {}: {}".format(session, details))
    await sleep(1)
    print("Calling 'com.example'")
    res = await session.call("example.foo", 42, something="nothing")
    print("Result: {}".format(res))
    await session.leave()


@component.register(
    "example.foo",
    options=RegisterOptions(details_arg='details'),
)
async def foo(*args, **kw):
    print("foo called: {}, {}".format(args, kw))
    for x in range(5, 0, -1):
        print("  returning in {}".format(x))
        await sleep(1)
    print("returning '42'")
    return 42


if __name__ == "__main__":
    run([component])

Component Configuration Options

Most of the arguments given when creating a new Component are a series of dict instances containing “configuration”-style information. These are documented in autobahn.wamp.component.Component so we go through the most important ones here:

transports=

You may define any number of transports; these are tried in round-robin order when doing connections (and subsequent re-connections). If the is_fatal= predicate is used and returns True for any errors, that transport won’t be used any more (and when no transports remain, the Component has “failed”).

Each transport is defined similarly to “connecting transports” in Crossbar.io but as a simplification a plain unicode URI may be used, for example transports=u"ws://example.com/ws" or transports=[u"ws://example.com/ws"]. If using a dict instead of a string you can specify the following keys:

  • type: "websocket" (default) or "rawsocket"

  • url: the URL of the router to connect to (very often, this will be the same as the “endpoint” host but not always)

  • endpoint: (optional; can be inferred from above) - type: "tcp" or "unix" - host, port: only for type="tcp" - path: only for type="unix" - tls: bool (advanced Twisted users can pass CertificateOptions); this is also inferred from a wss: scheme.

In addition, each transport may have some options related to re-connections:

  • max_retries: (default -1, “try forever”) or a hard limit.

  • max_retry_delay: (default 300)

  • initial_retry_delay: (default 1.5) how long we wait to re-connect the first time

  • retry_delay_growth: (default 1.5) a multiplier expanding our delay each try (so the second re-connect we wait retry_delay_growth * initial_retry_delay seconds).

  • retry_delay_jitter: (default 0.1) percent of total retry delay to add/subtract as jitter

After a successful connection, all re-connection values are set back to their original values.

realm=

Each WAMP Session is associated with precisely one realm, and so is each Component. A “realm” is a logically separated WAMP URI space (and is isolated from all other realms that may exist on a WAMP router). You must pass a unicode string here.

session_factory=

Leaving this as None should be fine for most users. You may pass an ApplicationSession subclass here (or even a callable that takes a single config argument and returns an instance implementing IApplicationSession) to create new session objects. This can be used by users of the “subclass”-style API who still want to take advantage of the configuration of Component and run(). The session argument passed in many of the callbacks will be an instance of this (see also Session Lifecycle).

authentication=

This contains a dict mapping an authenticator name to its configuration. You do not have to have any authentication information, in which case anonymous will be used. Currently valid authenticators are: anonymous, ticket, wampcra, cryptosign (experimental) and scram (experimental).

Typically the administrator of your WAMP router will decide which authentication methods are allowed. See for example Crossbar.io’s authentication documentation for some discussion of the various methods.

anonymous accepts no options. Most methods accept options for:

  • authextra: application-specific information

  • authid: unicode username

  • authrole: the desired role inside the realm

The other authentication methods take additional options as indicated below:

  • wampcra: also accepts secret (the password)

  • cryptosign (experimental): also accepts privkey, the hex-encoded ed25519 private key

  • scram (experimental): also requires nonce (hex-encoded), kdf ("argon2id-13" or "pbkdf2"), salt (hex-encoded), iterations (integer) and optionally memory (integer) and channel_binding (currently ignored).

  • ticket: accepts only the ticket option

Running a WAMP Router

The component we’ve created attempts to connect to a WAMP router running locally which accepts connections on port 8080, and for a realm crossbardemo.

Our suggested way is to use Crossbar.io as your WAMP router. There are other WAMP routers besides Crossbar.io as well.

Once you’ve installed Crossbar.io, run the example configuration from examples/router in your Autobahn clone. If you want to start fresh, you can instead do this:

crossbar init

This will create the default Crossbar.io node configuration ./.crossbar/config.json. You can then start Crossbar.io by doing:

crossbar start

Note: The defaults in the above will not work with the examples in the repository nor this documentation; please use the example router configuration that ships with Autobahn (in examples/router/.crossbar/).

Remote Procedure Calls

Remote Procedure Call (RPC) is a messaging pattern involving peers of three roles:

  • Caller

  • Callee

  • Dealer

A Caller issues calls to remote procedures by providing the procedure URI and any arguments for the call. The Callee will execute the procedure using the supplied arguments to the call and return the result of the call to the Caller.

Callees register procedures they provide with Dealers. Callers initiate procedure calls first to Dealers. Dealers route calls incoming from Callers to Callees implementing the procedure called, and route call results back from Callees to Callers.

The Caller and Callee will usually run application code, while the Dealer works as a generic router for remote procedure calls decoupling Callers and Callees. Thus, the Caller can be in a separate process (even a separate implementation language) from the Callee.

Registering Procedures

To make a procedure available for remote calling, the procedure needs to be registered. Registering a procedure is done by calling ICallee.register from a session.

Here is an example using Twisted; note that we’ve eliminated the configuration of the Component for clarity; see above for full example.

 1from autobahn.twisted.component import Component, run
 2
 3component = Component(...)
 4
 5@component.on_join
 6@inlineCallbacks
 7def joined(session, details):
 8    print("session ready")
 9
10    def add2(x, y):
11        return x + y
12
13    try:
14        yield session.register(add2, u'com.myapp.add2')
15        print("procedure registered")
16    except Exception as e:
17        print("could not register procedure: {0}".format(e))

The procedure add2 is registered (line 14) under the URI u"com.myapp.add2" immediately in the on_join callback which fires when the session has connected to a Router and joined a Realm. Another way to arrange for procedures to be registered is with the @register decorator:

1from autobahn.twisted.component import Component, run
2
3component = Component(...)
4
5@component.register
6def add2(x, y):
7    return x + y

Tip

You can register local functions like in above example, global functions as well as methods on class instances. Further, procedures can also be automatically registered using decorators.

When the registration succeeds, authorized callers will immediately be able to call the procedure (see Calling Procedures) using the URI under which it was registered (u"com.myapp.add2").

A registration may also fail, e.g. when a procedure is already registered under the given URI or when the session is not authorized to register procedures.

Using asyncio, the example looks identical except for the imports (note that add could be async def here if it needed to do other work).

1from autobahn.asyncio.component import Component, run
2
3component = Component(...)
4
5@component.register
6def add2(x, y):
7    return x + y

The differences compared with the Twisted variant are:

  • the import of ApplicationSession

  • the use of async keyword to declare co-routines

  • the use of await instead of yield

Calling Procedures

Calling a procedure (that has been previously registered) is done using autobahn.wamp.interfaces.ICaller.call().

Here is how you would call the procedure add2 that we registered in Registering Procedures under URI com.myapp.add2 in Twisted

 1from autobahn.twisted.component import Component, run
 2from twisted.internet.defer import inlineCallbacks
 3
 4
 5component = Component(...)
 6
 7@component.on_join
 8@inlineCallbacks
 9def joined(session, details):
10    print("session ready")
11    try:
12        res = yield session.call(u'com.myapp.add2', 2, 3)
13        print("call result: {}".format(res))
14    except Exception as e:
15        print("call error: {0}".format(e))

And here is the same done on asyncio

 1from autobahn.asyncio.component import Component, run
 2
 3
 4component = Component(...)
 5
 6@component.on_join
 7async def joined(session, details):
 8    print("session ready")
 9    try:
10        res = await session.call(u'com.myapp.add2', 2, 3)
11        print("call result: {}".format(res))
12    except Exception as e:
13        print("call error: {0}".format(e))

Publish & Subscribe

Publish & Subscribe (PubSub) is a messaging pattern involving peers of three roles:

  • Publisher

  • Subscriber

  • Broker

A Publisher publishes events to topics by providing the topic URI and any payload for the event. Subscribers of the topic will receive the event together with the event payload.

Subscribers subscribe to topics they are interested in with Brokers. Publishers initiate publication first at a Broker. Brokers route events incoming from Publishers to Subscribers that are subscribed to respective topics.

The Publisher and Subscriber will usually run application code, while the Broker works as a generic router for events thus decoupling Publishers from Subscribers. That is, there can be many Subscribers written in different languages on different machines which can all receive a single event published by an independant Publisher.

Subscribing to Topics

To receive events published to a topic, a session needs to first subscribe to the topic. Subscribing to a topic is done by calling autobahn.wamp.interfaces.ISubscriber.subscribe().

Here is a Twisted example:

 1from autobahn.twisted.component import Component
 2from twisted.internet.defer import inlineCallbacks
 3
 4
 5component = Component(...)
 6
 7@component.on_join
 8@inlineCallbacks
 9def joined(session, details):
10    print("session ready")
11
12    def oncounter(count):
13        print("event received: {0}", count)
14
15    try:
16        yield session.subscribe(oncounter, u'com.myapp.oncounter')
17        print("subscribed to topic")
18    except Exception as e:
19        print("could not subscribe to topic: {0}".format(e))

We create an event handler function oncounter (you can name that as you like) which will get called whenever an event for the topic is received.

To subscribe (line 15), we provide the event handler function (oncounter) and the URI of the topic to which we want to subscribe (u'com.myapp.oncounter').

When the subscription succeeds, we will receive any events published to u'com.myapp.oncounter'. Note that we won’t receive events published before the subscription succeeds.

The corresponding asyncio code looks like this

 1from autobahn.twisted.component import Component
 2
 3
 4component = Component(...)
 5
 6@component.on_join
 7async def joined(session, details):
 8    print("session ready")
 9
10    def oncounter(count):
11        print("event received: {0}", count)
12
13    try:
14        yield session.subscribe(oncounter, u'com.myapp.oncounter')
15        print("subscribed to topic")
16    except Exception as e:
17        print("could not subscribe to topic: {0}".format(e))

Again, nearly identical to Twisted. Note that when using the Component APIs we can use a shortcut to the above (e.g. perhaps there’s nothing else to do in on_join). This shortcut works similarly for Twisted, so we only show an asyncio example:

1from autobahn.twisted.component import Component
2
3
4component = Component(...)
5
6@component.subscribe(u"com.myapp.oncounter")
7def oncounter(count):
8    print("event received: {0}", count)

Publishing Events

Publishing an event to a topic is done by calling autobahn.wamp.interfaces.IPublisher.publish().

Events can carry arbitrary positional and keyword based payload – as long as the payload is serializable in JSON.

Here is a Twisted example that will publish an event to topic u'com.myapp.oncounter' with a single (positional) payload being a counter that is incremented for each publish:

 1from autobahn.twisted.component import Component
 2from autobahn.twisted.util import sleep
 3from twisted.internet.defer import inlineCallbacks
 4
 5
 6component = Component(...)
 7
 8
 9@component.on_join
10@inlineCallbacks
11def joined(session, details):
12    print("session ready")
13
14    counter = 0
15    while True:
16        # publish() only returns a Deferred if we asked for an acknowledgement
17        session.publish(u'com.myapp.oncounter', counter)
18        counter += 1
19        yield sleep(1)

The corresponding asyncio code looks like this

 1from autobahn.asyncio.component import Component
 2from asyncio import sleep
 3
 4
 5component = Component(...)
 6
 7
 8@component.on_join
 9async def joined(session, details):
10    print("session ready")
11
12    counter = 0
13    while True:
14        # publish() is only async if we asked for an acknowledgement
15        session.publish(u'com.myapp.oncounter', counter)
16        counter += 1
17        await sleep(1)

When publishing, you can pass an options= kwarg which is an instance of PublishOptions. Many of the options require support from the router.

  • whitelisting and blacklisting (all the eligible* and exclude* options) can affect which subscribers receive the publish; see crossbar documentation for more information;

  • retain= asks the router to retain the message;

  • acknowledge= asks the router to notify you it received the publish (note that this does not wait for every subscriber to have received the publish) and causes publish() to return a Future/Deferred.

Tip

By default, a publisher will not receive an event it publishes even when the publisher is itself subscribed to the topic subscribed to. This behavior can be overridden; see PublishOptions and exclude_me=False.

Tip

By default, publications are unacknowledged. This means, a publish() may fail silently (like when the session is not authorized to publish to the given topic). This behavior can be overridden; see PublishOptions and acknowledge=True.

Session Lifecycle

A WAMP application component has this lifecycle:

  1. component created

  2. transport connected (ISession.onConnect called)

  3. authentication challenge received (only for authenticated WAMP sessions, ISession.onChallenge called)

  4. session established (realm joined, ISession.onJoin called)

  5. session closed (realm left, ISession.onLeave called)

  6. transport disconnected (ISession.onDisconnect called)

In the Component API, there are similar corresponding events. The biggest difference is the lack of “challenge” events (you pass authentication configuration instead) and the addition of a “ready” event. You can subscribe to these events directly using a “listener” style API or via decorators. The events are:

  1. “connect”: transport connected

  2. “join”: session has successfully joined a realm

  3. “ready”: indicates that the realm has been joined and all “join” handlers have completed (including async ones)

  4. “leave”: session has left a realm

  5. “disconnect”: transport has disconnected

You can use the method autobahn.wamp.component.Component.on() to subscribe directly to events with a listener-function. For example, component.on('ready', my_ready_listener). Note that on a single Component instance these callbacks can happen multiple times (e.g. if the component is disconnected and then reconnects, its connect message will fire again after the disconnect). However, they will always be in order (i.e. you can’t join until after a connect and ready always comes after join).

There is also still the older “subclassing” based API, which is still supported and can be used if you prefer. This API involves subclassing ApplicationSession and overriding methods corresponding to the events (see ISession for more information):

class CustomSession(ApplicationSession):
    def __init__(self, config=None):
        ApplicationSession.__init__(self, config)
        print("component created")

    def onConnect(self):
        print("transport connected")
        self.join(self.config.realm)

    def onChallenge(self, challenge):
        print("authentication challenge received")

    def onJoin(self, details):
        print("session joined")

    def onLeave(self, details):
        print("session left")

    def onDisconnect(self):
        print("transport disconnected")

Logging

Internally, Autobahn uses txaio as an abstraction layer over Twisted and asyncio APIs. txaio also provides an abstracted logging API, which is what both Autobahn and Crossbar use.

There is a txaio Programming Guide which includes information on logging. If you are writing new code, you can choose the txaio APIs for maximum compatibility and runtime-efficiency (see below). If you prefer to write idiomatic logging code to “go with” the event-based framework you’ve chosen, that’s possible as well. For asyncio this is Python’s built-in logging module; for Twisted it is the post-15.2.0 logging API. The logging system in txaio is able to interoperate with the legacy Twisted logging API as well.

The txaio API encourages a more structured approach while still achieving easily-rendered text logging messages. The basic idiom is to use new-style Python formatting strings and pass any “data” as kwargs. So a typical logging call might look like: self.log.info("Knob {frob.name} moved {degrees} right.", knob=an_obj, degrees=42) and if the “info” log level is not enabled, the string won’t be “interpolated” (i.e. str() will not be invoked on any of the args, and a new string won’t be produced). On top of that, logging observers may examine the kwargs and do things beyond “normal” logging. This is very much inspired by twisted.logger; you can read the Twisted logging documentation for more insight.

Before any logging happens of course you must activate the logging system. There is a convenience method in txaio called txaio.start_logging. This will use twisted.logger.globalLogBeginner on Twisted or logging.Logger.addHandler under asyncio and allows you to specify and output stream and/or a log level. Valid levels are the list of strings in txaio.interfaces.log_levels. If you’re using the high-level autobahn.twisted.component.run() or autobahn.asyncio.component.run() APIs, logging will be started for you.

If you have instead got your own log-starting code (e.g. twistd) or Twisted/asyncio specific log handlers (logging.Handler subclass on asyncio and ILogObserver implementer under Twisted) then you will still get Autobahn and Crossbar messages. Probably the formatting will be slightly different from what txaio.start_logging provides. In either case, do not depend on the formatting of the messages e.g. by “screen-scraping” the logs.

We very much recommend using the ``txaio.start_logging()`` method of activating the logging system, as we’ve gone to pains to ensure that over-level logs are a “no-op” and incur minimal runtime cost. We achieve this by re-binding all out-of-scope methods on any logger created by txaio.make_logger() to a do-nothing function (by saving weak-refs of all the loggers created); at least on PyPy this is very well optimized out. This allows us to be generous with .debug() or .trace() calls without incurring very much overhead. Your Milage May Vary using other methods. If you haven’t called txaio.start_logging() this optimization is not activated.

Upgrading

From < 0.8.0

Starting with release 0.8.0, Autobahn now supports WAMP v2, and also support both Twisted and asyncio. This required changing module naming for WAMP v1 (which is Twisted only).

Hence, WAMP v1 code for Autobahn < 0.8.0

from autobahn.wamp import WampServerFactory

should be modified for Autobahn >= 0.8.0 for (using Twisted)

from autobahn.wamp1.protocol import WampServerFactory

Warning

WAMP v1 will be deprecated with the 0.9 release of Autobahn which is expected in Q4 2014.

From < 0.9.4

Starting with release 0.9.4, all WAMP router code in Autobahn has been split out and moved to Crossbar.io. Please see the announcement here.