Re: Address options grammar

2017-08-26 Thread Chris Richardson
I was using the Address constructor Address(const std::string& name, const std::string& subject, const qpid::types::Variant::Map& options, const std::string& type = ""); to provide the name and options. It seems the behaviour is not the same though as your method al

Re: Address options grammar

2017-08-26 Thread Jakub Scholz
How exactly do you create the address and what do you have in you client / broker log? When I try to do something like this: Address myAddress; Variant::Map options; Variant::Map selector; selector["selector"] = "color='blue'"; options["link"] = selector; Variant::Map node_

Address options grammar

2017-08-26 Thread Chris Richardson
Hi, Using the qpid-cpp-1.36 broker/client I am trying to specify two clauses on a receiver node (queue) address; one is a selector and looks something like this: Variant::Map options; Variant::Map selector; selector["selector"] = ""; options["link"] = selector; the other is a node type specifica