tests/wamp/.crossbar/config.json
author Edouard Tisserant
Sun, 08 Feb 2015 16:50:54 +0100
changeset 1440 e8daabf2c438
parent 1439 a68cd4253259
child 1895 876ce4e492a1
permissions -rw-r--r--
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes

{
   "controller": {
   },
   "workers": [
      {
         "type": "router",
         "options": {
            "pythonpath": [".."]
         },
         "realms": [
            {
               "name": "Automation",
               "roles": [
                  {
                     "name": "anonymous",
                     "permissions": [
                        {
                           "uri": "*",
                           "publish": true,
                           "subscribe": true,
                           "call": true,
                           "register": true
                        }
                     ]
                  }
               ]
            }
         ],
         "transports": [
            {
               "type": "websocket",
               "endpoint": {
                  "type": "tcp",
                  "port": 8888
               },
               "url": "ws://127.0.0.1:8888/",
               "serializers" : ["msgpack"]
            }
         ]
      }
   ]
}