-
Hi, there. I'm in the process of updating a very old piece of software that uses
Based on what I have read in the documentation, I believe the following is true about these 3 categories of the API:
So, in my case, I think what is a replacement for the old stuff I'm using is the autobahn.twisted.websocket.WampWebSocketServerFactory, but it doesn't look like this class and its associated protocol has the authentication functionality that the older WampCraServerProtocol and WampServerFactory possessed. So, I don't know if I should be using a Component class or the ApplicationSession class. What would be suitable replacements for WampCraServerProtocol and WampServerFactory in this context? Thanks for any insight and help. Best regards, Rodney Lott |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There is no WAMP without a router. Yes Autobahn can be used as just a WebSockets library (no WAMP no router). Component is a high level WAMP API so probably a good choice to replace older stuff? |
Beta Was this translation helpful? Give feedback.
There is no WAMP without a router.
Yes Autobahn can be used as just a WebSockets library (no WAMP no router).
Component is a high level WAMP API so probably a good choice to replace older stuff?