summaryrefslogtreecommitdiff
path: root/content/xdocs/BindingURLFormat.html
diff options
context:
space:
mode:
Diffstat (limited to 'content/xdocs/BindingURLFormat.html')
-rwxr-xr-xcontent/xdocs/BindingURLFormat.html100
1 files changed, 0 insertions, 100 deletions
diff --git a/content/xdocs/BindingURLFormat.html b/content/xdocs/BindingURLFormat.html
deleted file mode 100755
index acd2132946..0000000000
--- a/content/xdocs/BindingURLFormat.html
+++ /dev/null
@@ -1,100 +0,0 @@
-<html>
- <head>
- <title>Apache Qpid : BindingURLFormat</title>
- <link rel="stylesheet" href="styles/site.css" type="text/css" />
- <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
- </head>
-
- <body>
- <table class="pagecontent" border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#ffffff">
- <tr>
- <td valign="top" class="pagebody">
- <div class="pageheader">
- <span class="pagetitle">
- Apache Qpid : BindingURLFormat
- </span>
- </div>
- <div class="pagesubheading">
- This page last changed on Feb 18, 2008 by <font color="#0050B2">aidan</font>.
- </div>
-
- <div class="preformatted"><div class="preformattedContent">
-<pre>&lt;Exchange Class&gt;://&lt;Exchange Name&gt;/[&lt;Destination&gt;]/[&lt;Queue&gt;][?&lt;option&gt;='&lt;value&gt;'[&amp;&lt;option&gt;='&lt;value&gt;']]
-</pre>
-</div></div>
-
-<p>This URL format is used for two purposes in the code base. The broker uses this in the XML configuration file to create and bind queues at broker startup. It is also used by the client as a destination.</p>
-
-<p>This format was used because it allows an explicit description of exchange and queue relationship.</p>
-
-<p>The Exchange Class is not normally required for client connection as clients only publish to a named exchange however if exchanges are being dynamically instantiated it will be required. The class is required for the server to instantiate an exchange.</p>
-
-<p>There are a number of options that are currently defined:</p>
-<table class='confluenceTable'><tbody>
-<tr>
-<th class='confluenceTh'>Option</th>
-<th class='confluenceTh'>type</th>
-<th class='confluenceTh'>Description</th>
-</tr>
-<tr>
-<td class='confluenceTd'>exclusive</td>
-<td class='confluenceTd'> boolean</td>
-<td class='confluenceTd'>Is this an exclusive connection</td>
-</tr>
-<tr>
-<td class='confluenceTd'>autodelete</td>
-<td class='confluenceTd'> boolean</td>
-<td class='confluenceTd'>Should this queue be deleted on client disconnection</td>
-</tr>
-<tr>
-<td class='confluenceTd'>durable</td>
-<td class='confluenceTd'>boolean</td>
-<td class='confluenceTd'>Create a durable queue</td>
-</tr>
-<tr>
-<td class='confluenceTd'>clientid</td>
-<td class='confluenceTd'>string</td>
-<td class='confluenceTd'>Use the following client id</td>
-</tr>
-<tr>
-<td class='confluenceTd'>subscription</td>
-<td class='confluenceTd'>boolean</td>
-<td class='confluenceTd'>Create a subscription to this destination</td>
-</tr>
-<tr>
-<td class='confluenceTd'>routingkey</td>
-<td class='confluenceTd'>string</td>
-<td class='confluenceTd'>Use this value as the routing key</td>
-</tr>
-</tbody></table>
-
-<p>Using these options in conjunction with the Binding URL format should allow future expansion as new and custom exchange types are created.</p>
-
-<p>The URL format requires <b>that at least one</b> Queue or routingkey option be present on the URL.</p>
-
-<p>The routingkey would be used to encode a topic as shown in the examples section below.</p>
-
-<h4><a name="BindingURLFormat-Examples"></a>Examples </h4>
-<div class="preformatted"><div class="preformattedContent">
-<pre>direct://amq.direct/SimpleQueue
-direct://amq.direct/UnusuallyBoundQueue?routingkey='/queue'
-topic://amq.topic?routingkey='stocks.#'
-topic://amq.topic?routingkey='stocks.nyse.ibm'
-</pre>
-</div></div>
-
-
-
- </td>
- </tr>
- </table>
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td height="12" background="border/border_bottom.gif"><img src="border/spacer.gif" width="1" height="1" border="0"/></td>
- </tr>
- <tr>
- <td align="center"><font color="grey">Document generated by Confluence on Apr 22, 2008 02:47</font></td>
- </tr>
- </table>
- </body>
-</html> \ No newline at end of file