Sasha Khapyorsky
Sasha Khapyorsky
Hi, Does current autobahn-cpp code works with wss:// ? Or some patches still be needed. I've tried something like this: ` #include #include typedef websocketpp::clientwebsocketpp::config::asio_tls_client client; typedef autobahn::wamp_websocketpp_websocket_transportwebsocketpp::config::asio_tls_clientwebsocket_transport; ``` client...
Thanks for the quick replay Denis, Actually I'm not using localhost (just placed this name in the example). Also it works without any problem with autobahn-python, but doesn't with autobahn-cpp....
I will try to verify the server, however it may take some time (it is not mine). Many Thanks!
Hi, There are logs... Not so clear for me ( From autobahn-cpp side: > starting io service > [2016-07-19 18:15:43] [connect] Successful connection > [2016-07-19 18:15:43] [error] handle_transport_init received error:...
I've found the problem finally. crossbario supports only TLS v1.2 clients. So using: ``` ws_clinet.set_tls_init_handler([&](websocketpp::connection_hdl) { return websocketpp::lib::make_shared(boost::asio::ssl::context::tlsv12_client); }); ``` makes it to work. Thanks for the help!
Clearly I will not be able to help with such minimalistic problem description: On Sat, Dec 8, 2018 at 3:20 PM J0hnnyD03 wrote: > > problems to roll the touch...
Hi! Be sure that you are installed things properly (according to README): ``` make make install-user make install ``` Your error indicates some config settings (which should be setted up...
Guys, Please provide gdb backtrace with not stripped version (not ```/usr/local/bin/waze```): ``` $ gdb src/gtk2/gtkroadmap (gdb) run (gdb) backtrace ```
Hi Guys, I cannot reproduce this errors. Could you provide debug backtrace? For this after normal installation, in source tree run: ``` $ gdb ./src/gtk2/gtkroadmap ``` , then in gdb:...
Hi! Thanks for the prompt input. This problem is different from previously reported. The failure happens at file websvc_trans/websvc_trans.c, line 712 - it is explicit assert(0) call from wst_start_trans() function....