Questions tagged [zeromq-auth]

ZeroMQ Authentication Protocol: The use case for ZAP is a set of servers that need authentication of remote clients, and which talk to a handler that checks client credentials. ZAP defines how the servers connect to the handler, and the messages they exchange.

5 questions
2
votes
1 answer

ZeroMQ Connector still sent data successfully but failed to get response from MT4 Server

I was following the 7 video tutorials on how to interface python with a MetaTrader Terminal 4 and got no problem running them on iPython kernel just as instructed in this video By no problem I mean a trade was sent to the server with ease and client…
tiensison
  • 21
  • 3
2
votes
0 answers

PyZMQ CURVE auth user credentials

Is it possible to retrieve some user related data from auth context during CURVE authorization? I.e., I configure auth the following way: rpc_server = zmq.Context.instance().socket(zmq.REP) rpc_server.curve_secretkey =…
1
vote
0 answers

zeromq plain authentication -> example with C++ library?

I cannot get the plain authentication to work with the core zeromq C++ library. I can get it to work with pyzmq with no issues. I noticed that the C and Python zeromq APIs have an authenticator that is run as a separate thread, but I don't see a…
hokiegeek2
  • 303
  • 3
  • 7
0
votes
1 answer

ZeroMQ - Get user ID from ZeroMQ Auth response

In ZeroMQ, more precisely cppzmq in my case, when you use ZAP, it is handled completely transparently for the user. However, as documented in the RFC: https://rfc.zeromq.org/spec/27/, the Auth server can send back a user ID and some metadata in the…
Antoine Viallon
  • 314
  • 4
  • 12
0
votes
1 answer

Can Zeromq curve authentication mode co-exist with md5 authentication mode?

I have a requirement where the present zqromq md5 authentication method has to be moved to curve authentication method. However there can still be clients using the old md5 authentication method in the topology. That means some clients will keep…
NeilB
  • 347
  • 2
  • 16