我对Autobahn和WAMP(Web Apps Messaging Protocol)很陌生。
我只是根据http://autobahn.ws/python/wamp/programming.html和https://github.com/crossbario/crossbarexamples/blob/master/votes/python/votes.py
创建一个简单的应用程序组件from autobahn.asyncio.wamp import (
ApplicationSession,
ApplicationRunner
)
from autobahn import wamp
from asyncio import coroutine
class MyComponent(ApplicationSession):
@wamp.register("com.myapp.add2")
def add2(self, x, y):
print("added 2")
return x + y
@wamp.register("com.myapp.add3")
def add3(self, x, y, z):
print("added 3")
return x + y + z
@coroutine
def onJoin(self, details):
res = yield from self.register(self)
print("{} procedures registered.".format(len(res)))
if __name__ == '__main__':
runner = ApplicationRunner(url="ws://localhost:8080/ws", realm="realm1")
runner.run(MyComponent)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<script>AUTOBAHN_DEBUG = false;</script>
<script src="http://autobahn.s3.amazonaws.com/autobahnjs/latest/autobahn.min.jgz"></script>
<script>
var connection = new autobahn.Connection({
url: "ws://localhost:8080/ws",
realm: "realm1"
});
connection.onopen = function (session, details) {
session.call("com.myapp.add2", [2,3]).then(session.log);
session.call("com.myapp.add3", [2,3,4]).then(session.log);
};
connection.onclose = function (reason, details) {
console.log("Connection lost: " + reason);
};
connection.open();
</script>
</body>
</html>
看起来这与https://github.com/hwmrocker/hextest/issues/2类似,但我无法理解。我甚至找不到有效的样本。这个(https://github.com/tavendo/AutobahnPython/tree/master/examples/asyncio/wamp/wamplet/wamplet1)类似,但也有同样的问题。
令人惊讶的是,当我在同一个端口上运行外部Crossbar示例并运行上面的示例时,它就像魔术一样,我可以在控制台上看到结果。
我找到了这个(https://github.com/tavendo/AutobahnPython/blob/master/examples/asyncio/wamp/basic/server.py),但看起来很复杂。
请帮帮我。
感谢高级。
答案 0 :(得分:1)
您的代码无需修改即可适用于我:
您的应用包含2个WAMP应用程序组件:浏览器端(使用AutobahnJS)和服务器端(使用AutobahnPython / Python3 / asyncio)。
要使这两个组件相互通信,两个组件都需要连接到WAMP路由器。我使用了Crossbar.io。
请注意,您的Python组件逻辑上是服务器端组件,但它 技术上服务器:它不会打开监听端口或什么,但它连接到WAMP路由器。