autobahn-cpp
autobahn-cpp copied to clipboard
WAMP for C++ in Boost/Asio
When running the "websocket_calle` example with "-p 8080", I get the error mentioned in the title, followed by: > "WAMP Protocol Error (invalid serialization of WAMP message: ExtraData unpack(b) received...
Same as https://github.com/crossbario/autobahn-cpp/pull/234 but using Conan as package manager. - [X] basic integration - [ ] adapt GitHub workflow
Hey! I created a very simple test environment for `autobahn-cpp`. I thought it will be quite useful, in case of future development. Initially I realised, if we change even simple...
m_session_join has to take the exception instead of throwing so connecting(and challenged) client can react on .get() instead of the whole application crashing from the unhandled exception (which is thrown...
Hey again, I'm going deeper with WAMP and faced another problem. I have a callee in python providing a procedure that should return a map: ```python from autobahn.asyncio.component import Component,...
with: 1. process_goodybe setting m_session_id = 0; 2. calling send_message with parameter session_established defaulted to true 3. condition if (session_established && !m_session_id) will always be true this results into throwing...
Right now methods: - on_ws_fail - on_ws_close of wamp_websocketpp_websocket_transport are private. These are the methods that are called when: 1. Connection fails (on_ws_fail) 2. Connection closes (on_ws_close) There are no...
publish autobahn-cpp releases to https://conan.io/center/ see https://github.com/crossbario/autobahn-cpp/pull/214#issuecomment-703103829 > PR https://github.com/crossbario/autobahn-cpp/pull/214 added support for installing deps of autobahn-cpp via conan. this new issue is about publishing autobahn-cpp itself to conan.
The page https://github.com/crossbario/autobahn-cpp#show-me-some-code contains two links to example code, but both return a 404. Example C++ code [ https://github.com/crossbario/autobahn-cpp/blob/master/examples/register2.cpp ] Example JavaScript code [ https://github.com/crossbario/autobahn-cpp/blob/master/examples/web/index.html ]