Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

A simple, two-broker network can be configured by creating an exchange on each broker then a pair of dynamic routes (one for each direction of message flow):

Create exchanges:

No Format
$ qpid-config -a localhost:10003 add exchange topic fed.topic
$ qpid-config -a localhost:10004 add exchange topic fed.topic

Create dynamic routes:

No Format
$ qpid-route dynamic add localhost:10003 localhost:10004 fed.topic
$ qpid-route dynamic add localhost:10004 localhost:10003 fed.topic

More extensive and realistic examples are supplied later in this document.

Static Routing

Exchange-to-Exchanges Routes

...