I'm trying to learn more information on how apache Qpid works and I do so by following examples from official svn :
http://svn.apache.org/repos/asf
I was looking at :
Which uses this configuration/property file :
Can someone break down to me what this line from configuration represents :
connectionfactory.qpidConnectionfactory = amqp://guest:guest@clientid/test?brokerlist='tcp://localhost:5672
i. I assume guest:guest would be the credentials which to use when connecting to the qpid
ii. I assume localhost and 5672 should be hostname:port
My question is what does test?
represent ? is that a name of the queue or what is it? is it possible to specify queue name directly in this amqp url ?