Darren Smith

Results 19 comments of Darren Smith

Hi.... that does sound odd, because that symbol ticks frequently. Is poloniex still supporting WAMP protocol? I thought it had been deprecated, and they are using their own API. There...

Ok ... the subscription seems successful. There is unexpected output in your log though ... the long json message from the initial connection handshake is repeated several times. What about...

I also see in the messages from poloniex server the entry `"payload_encryption_cryptobox":true` ... so maybe poloniex are encrypting the actual message payload? If so, wampcc doesn't support this, and as...

Hi, looks a like a problem with the server. The client is advertising the ability to speak two serialiser types (wamp.2.json,wamp.2.msgpack) but the server is not selecting which one to...

@lidehuth the bitfiniex protocol is not WAMP. They are using websocket, and json formatted messages, but they are using some other messaging protocol. You won't be able to use wampcc...

Logon credentials can be set like this: ```c++ client_credentials credentials; credentials.realm="MY_REALM"; credentials.authid="MY_API_KEY"; credentials.authmethods = {"wampcra"}; credentials.secret_fn = []() -> std::string { return "MY_SECRET"; }; ```

worth checking this answer --> https://stackoverflow.com/questions/32154121/how-to-connect-to-poloniex-com-websocket-api-using-a-python-library/38254622#38254622 ... seems poloniex might no longer support WAMP protocol.

Will leave this issue as open; more documentation needed for windows build

Hi, I need to review this in a bit more in depth, because the call to `handle_exception();` is really only intended for inbound traffic. Although the send_msg is also used...