yes, there are a set of tools in the python package. use qpid-config
http://qpid.apache.org/mgmtc.html
Carl.
GS.Chandra N wrote:
>Sure, let talk about terminology. In AMQP there is an exchange and a
queue. ........
Thanks Carl.
This is cool. What you just described is really what i want - a pub
sub model.
Is there any way to administratively set things up so that the
policies regarding which exchange to subscribe to and what broker to
connect to etc can be controlled by administrators easily? WHere can i
find a reference of the commands / conf files for qpid brokers and
clients?
Thanks
Gs
On Thu, Feb 5, 2009 at 11:36 PM, Carl Trieloff <[email protected]
<mailto:[email protected]>> wrote:
GS.Chandra N wrote:
Hi,
this can be done but using non-destructive consumers.
Cant subscriptions be created between multiple private queues
-> public
queue that contain the messages everyone is interested in to
create the same
effect? Or would that be too much of a load ?
I'm yet to start with the actual client api but the 1.0 draft
design left me
with this impression.
On the same topic, how do message subscription get handled in
a federated
environment.
Would clients connected anywhere in the federated tree
receieve messages
irrespect of where they originate ?
How do brokers in the federated tree come to know about
subscriptions
created elsewhere in the heirarchy? Is this supported?
Sure, let talk about terminology. In AMQP there is an exchange and
a queue. This of the exchange
as the router, which can be named for example. So to do the above
you would declare a fanout exchange
and then publish to that. every consumer would create a tmp queue
and bind it to the exchange and would
get all the messages sent to that named destination.
Carl.