Darren Smith

Results 19 comments of Darren Smith

Hi ... that would be a large change to the project, although possible to temporarily make it less disruptive by also keeping the wampcc::json_object as a wrapper. My original concern...

Hi ... sorry for late response. I can put this on roadmap, but I have a couple of other items I am planning to address first. I don't think this...

Hi ... how about storing a weak_ptr inside your `on_event_fn` instead of the shared_ptr. The problem is the underlying connection can terminate uncleanly at any point (eg network disconnect), and...

Hi, Thanks for details error info. The error was indeed on the line you identified. I've fixed the code, and checked into the master branch.

Hi, I think you could use [base64](https://stackoverflow.com/questions/1443158/binary-data-in-json-string-something-better-than-base64) encoding. So convert your data into base64 string, and then send it as a string.

Yeah, base64 does have that size & cpu overhead. But the problem with trying to support binary directly is that it is not part of the JSON specification, so there...

well from that message, it appears that the `libdl` is missing from the link line; you could try modifying the examples.makefile, to add `-ldl` to the `LDLIBS` variable. I must...

Hi. I've just found a bug in the websocket upgrade code. It was assuming the Sec-WebSocket-Protocol would always be present, but turns out some browsers dont set it. That has...

Partial success with using wss. Added a new example, `examples/wamp_router` which listens on an SSL socket (and this builds automatically as part of autotools). Additionally there is a test client...

Hi, an example subscriber can be found at https://github.com/darrenjs/wampcc/blob/master/examples/basic/basic_subscriber.cc ... there you can see that during the call to session->subscribe( ... ) you pass in two lambda callbacks : ```c++...