http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/5be16a28/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster-receiver.html
----------------------------------------------------------------------
diff --git 
a/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster-receiver.html 
b/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster-receiver.html
new file mode 100644
index 0000000..bcf1c12
--- /dev/null
+++ 
b/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster-receiver.html
@@ -0,0 +1,108 @@
+<html><head><META http-equiv="Content-Type" content="text/html; 
charset=iso-8859-1"><title>Apache Tomcat Configuration Reference - The Cluster 
Receiver object</title><meta content="Filip Hanik" name="author"><style 
media="print" type="text/css">
+                       .noPrint {display: none;}
+                       td#mainBody {width: 100%;}
+               </style></head><body vlink="#525D76" alink="#525D76" 
link="#525D76" text="#000000" bgcolor="#ffffff"><table cellspacing="0" 
width="100%" border="0"><!--PAGE HEADER--><tr><td><!--PROJECT LOGO--><a 
href="http://tomcat.apache.org/";><img border="0" alt="
+    The Apache Tomcat Servlet/JSP Container
+  " align="right" src="../images/tomcat.gif"></a></td><td><h1><font 
face="arial,helvetica,sanserif">Apache Tomcat 
6.0</font></h1></td><td><!--APACHE LOGO--><a href="http://www.apache.org/";><img 
border="0" alt="Apache Logo" align="right" 
src="../images/asf-logo.gif"></a></td></tr></table><table cellspacing="4" 
width="100%" border="0"><!--HEADER SEPARATOR--><tr><td colspan="2"><hr size="1" 
noshade></td></tr><tr><!--LEFT SIDE NAVIGATION--><td class="noPrint" nowrap 
valign="top" width="20%"><p><strong>Links</strong></p><ul><li><a 
href="../index.html">Docs Home</a></li><li><a href="index.html">Config Ref. 
Home</a></li></ul><p><strong>Top Level Elements</strong></p><ul><li><a 
href="server.html">Server</a></li><li><a 
href="service.html">Service</a></li></ul><p><strong>Executors</strong></p><ul><li><a
 
href="executor.html">Executor</a></li></ul><p><strong>Connectors</strong></p><ul><li><a
 href="http.html">HTTP</a></li><li><a 
href="ajp.html">AJP</a></li></ul><p><strong>Containers</strong></p>
 <ul><li><a href="context.html">Context</a></li><li><a 
href="engine.html">Engine</a></li><li><a href="host.html">Host</a></li><li><a 
href="cluster.html">Cluster</a></li></ul><p><strong>Nested 
Components</strong></p><ul><li><a 
href="listeners.html">Listeners</a></li><li><a 
href="globalresources.html">Global Resources</a></li><li><a 
href="loader.html">Loader</a></li><li><a 
href="manager.html">Manager</a></li><li><a 
href="realm.html">Realm</a></li><li><a 
href="resources.html">Resources</a></li><li><a 
href="valve.html">Valve</a></li></ul><p><strong>Cluster 
Elements</strong></p><ul><li><a href="cluster.html">Cluster</a></li><li><a 
href="cluster-manager.html">Manager</a></li><li><a 
href="cluster-channel.html">Channel</a></li><li><a 
href="cluster-membership.html">Channel/Membership</a></li><li><a 
href="cluster-sender.html">Channel/Sender</a></li><li><a 
href="cluster-receiver.html">Channel/Receiver</a></li><li><a 
href="cluster-interceptor.html">Channel/Interceptor</a></li><li><a href="cluste
 r-valve.html">Valve</a></li><li><a 
href="cluster-deployer.html">Deployer</a></li><li><a 
href="cluster-listener.html">ClusterListener</a></li></ul><p><strong>Global 
Settings</strong></p><ul><li><a href="systemprops.html">System 
properties</a></li></ul></td><!--RIGHT SIDE MAIN BODY--><td id="mainBody" 
align="left" valign="top" width="80%"><h1>Apache Tomcat Configuration 
Reference</h1><h2>The Cluster Receiver object</h2><table cellpadding="2" 
cellspacing="0" border="0"><tr><td bgcolor="#525D76"><font 
face="arial,helvetica.sanserif" color="#ffffff"><a name="Table of 
Contents"><!--()--></a><a name="Table_of_Contents"><strong>Table of 
Contents</strong></a></font></td></tr><tr><td><blockquote>
+<ul><li><a href="#Introduction">Introduction</a></li><li><a 
href="#Blocking_vs_Non-Blocking_Receiver">Blocking vs Non-Blocking 
Receiver</a></li><li><a href="#Attributes">Attributes</a><ol><li><a 
href="#Common_Attributes">Common Attributes</a></li><li><a 
href="#NioReceiver">NioReceiver</a></li><li><a 
href="#BioReceiver">BioReceiver</a></li></ol></li></ul>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a 
name="Introduction"><strong>Introduction</strong></a></font></td></tr><tr><td><blockquote>
+  <p>
+  The receiver component is responsible for receiving cluster messages.
+  As you might notice through the configuration, is that the receiving of 
messages
+  and sending of messages are two different components, this is different from 
many other 
+  frameworks, but there is a good reason for it, to decouple the logic for how 
messages are sent from
+  how messages are received.<br>
+  The receiver is very much like the Tomcat Connector, its the base of the 
thread pool
+  for incoming cluster messages. The receiver is straight forward, but all the 
socket settings
+  for incoming traffic are managed here.
+  </p>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a name="Blocking vs Non-Blocking Receiver"><!--()--></a><a 
name="Blocking_vs_Non-Blocking_Receiver"><strong>Blocking vs Non-Blocking 
Receiver</strong></a></font></td></tr><tr><td><blockquote>
+  <p>
+  The receiver supports both a non blocking, 
<code>org.apache.catalina.tribes.transport.nio.NioReceiver</code>, and a 
+  blocking, <code>org.apache.catalina.tribes.transport.bio.BioReceiver</code>. 
It is preferred to use the non blocking receiver
+  to be able to grow your cluster without running into thread starvation.<br>
+  Using the non blocking receiver allows you to with a very limited thread 
count to serve a large number of messages.
+  Usually the rule is to use 1 thread per node in the cluster for small 
clusters, and then depending on your message frequency
+  and your hardware, you'll find an optimal number of threads peak out at a 
certain number.
+  </p>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a 
name="Attributes"><strong>Attributes</strong></a></font></td></tr><tr><td><blockquote>
+  <table cellpadding="2" cellspacing="0" border="0"><tr><td 
bgcolor="#828DA6"><font face="arial,helvetica.sanserif" color="#ffffff"><a 
name="Common Attributes"><!--()--></a><a 
name="Common_Attributes"><strong>Common 
Attributes</strong></a></font></td></tr><tr><td><blockquote>
+  <table cellpadding="5" border="1"><tr><th bgcolor="#023264" 
width="15%"><font color="#ffffff">Attribute</font></th><th bgcolor="#023264" 
width="85%"><font color="#ffffff">Description</font></th></tr><tr><td 
valign="center" align="left"><strong><code>className</code></strong></td><td 
valign="center" align="left">
+      The implementation of the receiver component. Two implementations 
available,
+      <code>org.apache.catalina.tribes.transport.nio.NioReceiver</code> and 
+      <code>org.apache.catalina.tribes.transport.bio.BioReceiver</code>.<br>
+      The <code>org.apache.catalina.tribes.transport.nio.NioReceiver</code> is 
the 
+      preferred implementation
+    </td></tr><tr><td valign="center" 
align="left"><code>address</code></td><td valign="center" align="left">
+      The address (network interface) to listen for incoming traffic.
+      Same as the bind address. The default value is <code>auto</code> and 
translates to
+      <code>java.net.InetAddress.getLocalHost().getHostAddress()</code>.
+    </td></tr><tr><td valign="center" align="left"><code>direct</code></td><td 
valign="center" align="left">
+      Possible values are <code>true</code> or <code>false</code>. 
+      Set to true if you want the receiver to use direct bytebuffers when 
reading data
+      from the sockets.
+    </td></tr><tr><td valign="center" align="left"><code>port</code></td><td 
valign="center" align="left">
+      The listen port for incoming data. The default value is 
<code>4000</code>.
+      To avoid port conflicts the receiver will automatically bind to a free 
port within the range of 
+      <code> port &lt;= bindPort &lt;= port+autoBind</code>
+      So for example, if port is 4000, and autoBind is set to 10, then the 
receiver will open up 
+      a server socket on the first available port in the range 4000-4100.
+    </td></tr><tr><td valign="center" 
align="left"><code>autoBind</code></td><td valign="center" align="left">
+      Default value is <code>100</code>.
+      Use this value if you wish to automatically avoid port conflicts the 
cluster receiver will try to open a 
+      server socket on the <code>port</code> attribute port, and then work up 
<code>autoBind</code> number of times.
+    </td></tr><tr><td valign="center" 
align="left"><code>securePort</code></td><td valign="center" align="left">
+      The secure listen port. This port is SSL enabled. If this attribute is 
omitted no SSL port is opened up.
+      There default value is unset, meaning there is no SSL socket available.
+    </td></tr><tr><td valign="center" 
align="left"><code>selectorTimeout</code></td><td valign="center" align="left">
+      The value in milliseconds for the polling timeout in the 
<code>NioReceiver</code>. On older versions of the JDK
+      there have been bugs, that should all now be cleared out where the 
selector never woke up.
+      The default value is a very high <code>5000</code> milliseconds.
+    </td></tr><tr><td valign="center" 
align="left"><code>maxThreads</code></td><td valign="center" align="left">
+      The maximum number of threads in the receiver thread pool. The default 
value is <code>6</code>
+      Adjust this value relative to the number of nodes in the cluster, the 
number of messages being exchanged and 
+      the hardware you are running on. A higher value doesn't mean more 
efficiency, tune this value according to your 
+      own test results.
+    </td></tr><tr><td valign="center" 
align="left"><code>minThreads</code></td><td valign="center" align="left">
+      Minimum number of threads to be created when the receiver is started up. 
Default value is <code>6</code>
+    </td></tr><tr><td valign="center" 
align="left"><code>ooBInline</code></td><td valign="center" align="left">
+      Boolean value for the socket OOBINLINE option. Possible values are 
<code>true</code> or <code>false</code>.
+    </td></tr><tr><td valign="center" 
align="left"><code>rxBufSize</code></td><td valign="center" align="left">
+      The receiver buffer size on the receiving sockets. Value is in bytes, 
the default value is <code>43800</code> bytes.
+    </td></tr><tr><td valign="center" 
align="left"><code>txBufSize</code></td><td valign="center" align="left">
+      The sending buffer size on the receiving sockets. Value is in bytes, the 
default value is <code>25188</code> bytes.
+    </td></tr><tr><td valign="center" 
align="left"><code>soKeepAlive</code></td><td valign="center" align="left">
+      Boolean value for the socket SO_KEEPALIVE option. Possible values are 
<code>true</code> or <code>false</code>.
+    </td></tr><tr><td valign="center" 
align="left"><code>soLingerOn</code></td><td valign="center" align="left">
+      Boolean value to determine whether to use the SO_LINGER socket option. 
+      Possible values are <code>true</code> or <code>false</code>. Default 
value is <code>true</code>.
+    </td></tr><tr><td valign="center" 
align="left"><code>soLingerTime</code></td><td valign="center" align="left">
+      Sets the SO_LINGER socket option time value. The value is in seconds. 
+      The default value is <code>3</code> seconds.
+    </td></tr><tr><td valign="center" 
align="left"><code>soReuseAddress</code></td><td valign="center" align="left">
+     Boolean value for the socket SO_REUSEADDR option. Possible values are 
<code>true</code> or <code>false</code>.
+    </td></tr><tr><td valign="center" 
align="left"><code>soTrafficClass</code></td><td valign="center" align="left">
+     Sets the traffic class level for the socket, the value is between 0 and 
255.
+     Different values are defined in <a 
href="http://java.sun.com/j2se/1.5.0/docs/api/java/net/Socket.html#setTrafficClass(int)">
+     java.net.Socket#setTrafficClass(int)</a>.
+    </td></tr><tr><td valign="center" 
align="left"><code>tcpNoDelay</code></td><td valign="center" align="left">
+     Boolean value for the socket TCP_NODELAY option. Possible values are 
<code>true</code> or <code>false</code>.
+     The default value is <code>true</code>
+    </td></tr><tr><td valign="center" 
align="left"><code>timeout</code></td><td valign="center" align="left">
+     Sets the SO_TIMEOUT option on the socket. The value is in milliseconds 
and the default value is <code>3000</code> 
+     milliseconds.
+    </td></tr><tr><td valign="center" 
align="left"><code>useBufferPool</code></td><td valign="center" align="left">
+     Boolean value whether to use a shared buffer pool of cached 
<code>org.apache.catalina.tribes.io.XByteBuffer</code>
+     objects. If set to true, the XByteBuffer that is used to pass a message 
up the channel, will be recycled at the end 
+     of the requests. This means that interceptors in the channel must not 
maintain a reference to the object
+     after the 
<code>org.apache.catalina.tribes.ChannelInterceptor#messageReceived</code> 
method has exited.
+    </td></tr></table>
+  </blockquote></td></tr></table>
+  <table cellpadding="2" cellspacing="0" border="0"><tr><td 
bgcolor="#828DA6"><font face="arial,helvetica.sanserif" color="#ffffff"><a 
name="NioReceiver"><strong>NioReceiver</strong></a></font></td></tr><tr><td><blockquote>
+  </blockquote></td></tr></table>
+  <table cellpadding="2" cellspacing="0" border="0"><tr><td 
bgcolor="#828DA6"><font face="arial,helvetica.sanserif" color="#ffffff"><a 
name="BioReceiver"><strong>BioReceiver</strong></a></font></td></tr><tr><td><blockquote>
+  </blockquote></td></tr></table>
+
+</blockquote></td></tr></table></td></tr><!--FOOTER SEPARATOR--><tr><td 
colspan="2"><hr size="1" noshade></td></tr><!--PAGE FOOTER--><tr><td 
colspan="2"><div align="center"><font size="-1" color="#525D76"><em>
+        Copyright &copy; 1999-2010, Apache Software Foundation
+        </em></font></div></td></tr></table></body></html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/5be16a28/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster-sender.html
----------------------------------------------------------------------
diff --git 
a/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster-sender.html 
b/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster-sender.html
new file mode 100644
index 0000000..a7d2d02
--- /dev/null
+++ b/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster-sender.html
@@ -0,0 +1,113 @@
+<html><head><META http-equiv="Content-Type" content="text/html; 
charset=iso-8859-1"><title>Apache Tomcat Configuration Reference - The Cluster 
Sender object</title><meta content="Filip Hanik" name="author"><style 
media="print" type="text/css">
+                       .noPrint {display: none;}
+                       td#mainBody {width: 100%;}
+               </style></head><body vlink="#525D76" alink="#525D76" 
link="#525D76" text="#000000" bgcolor="#ffffff"><table cellspacing="0" 
width="100%" border="0"><!--PAGE HEADER--><tr><td><!--PROJECT LOGO--><a 
href="http://tomcat.apache.org/";><img border="0" alt="
+    The Apache Tomcat Servlet/JSP Container
+  " align="right" src="../images/tomcat.gif"></a></td><td><h1><font 
face="arial,helvetica,sanserif">Apache Tomcat 
6.0</font></h1></td><td><!--APACHE LOGO--><a href="http://www.apache.org/";><img 
border="0" alt="Apache Logo" align="right" 
src="../images/asf-logo.gif"></a></td></tr></table><table cellspacing="4" 
width="100%" border="0"><!--HEADER SEPARATOR--><tr><td colspan="2"><hr size="1" 
noshade></td></tr><tr><!--LEFT SIDE NAVIGATION--><td class="noPrint" nowrap 
valign="top" width="20%"><p><strong>Links</strong></p><ul><li><a 
href="../index.html">Docs Home</a></li><li><a href="index.html">Config Ref. 
Home</a></li></ul><p><strong>Top Level Elements</strong></p><ul><li><a 
href="server.html">Server</a></li><li><a 
href="service.html">Service</a></li></ul><p><strong>Executors</strong></p><ul><li><a
 
href="executor.html">Executor</a></li></ul><p><strong>Connectors</strong></p><ul><li><a
 href="http.html">HTTP</a></li><li><a 
href="ajp.html">AJP</a></li></ul><p><strong>Containers</strong></p>
 <ul><li><a href="context.html">Context</a></li><li><a 
href="engine.html">Engine</a></li><li><a href="host.html">Host</a></li><li><a 
href="cluster.html">Cluster</a></li></ul><p><strong>Nested 
Components</strong></p><ul><li><a 
href="listeners.html">Listeners</a></li><li><a 
href="globalresources.html">Global Resources</a></li><li><a 
href="loader.html">Loader</a></li><li><a 
href="manager.html">Manager</a></li><li><a 
href="realm.html">Realm</a></li><li><a 
href="resources.html">Resources</a></li><li><a 
href="valve.html">Valve</a></li></ul><p><strong>Cluster 
Elements</strong></p><ul><li><a href="cluster.html">Cluster</a></li><li><a 
href="cluster-manager.html">Manager</a></li><li><a 
href="cluster-channel.html">Channel</a></li><li><a 
href="cluster-membership.html">Channel/Membership</a></li><li><a 
href="cluster-sender.html">Channel/Sender</a></li><li><a 
href="cluster-receiver.html">Channel/Receiver</a></li><li><a 
href="cluster-interceptor.html">Channel/Interceptor</a></li><li><a href="cluste
 r-valve.html">Valve</a></li><li><a 
href="cluster-deployer.html">Deployer</a></li><li><a 
href="cluster-listener.html">ClusterListener</a></li></ul><p><strong>Global 
Settings</strong></p><ul><li><a href="systemprops.html">System 
properties</a></li></ul></td><!--RIGHT SIDE MAIN BODY--><td id="mainBody" 
align="left" valign="top" width="80%"><h1>Apache Tomcat Configuration 
Reference</h1><h2>The Cluster Sender object</h2><table cellpadding="2" 
cellspacing="0" border="0"><tr><td bgcolor="#525D76"><font 
face="arial,helvetica.sanserif" color="#ffffff"><a name="Table of 
Contents"><!--()--></a><a name="Table_of_Contents"><strong>Table of 
Contents</strong></a></font></td></tr><tr><td><blockquote>
+<ul><li><a href="#Introduction">Introduction</a></li><li><a 
href="#Concurrent_Parallel_Delivery">Concurrent Parallel 
Delivery</a></li><li><a href="#Nested_Elements">Nested Elements</a></li><li><a 
href="#Attributes">Attributes</a><ol><li><a 
href="#Common_Sender_Attributes">Common Sender Attributes</a></li><li><a 
href="#Common_Transport_Attributes">Common Transport Attributes</a></li><li><a 
href="#PooledParallelSender_Attributes">PooledParallelSender 
Attributes</a></li></ol></li></ul>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a 
name="Introduction"><strong>Introduction</strong></a></font></td></tr><tr><td><blockquote>
+  <p>
+  The channel sender component is responsible for delivering outgoing cluster 
messages over the network.
+  In the default implementation, 
<code>org.apache.catalina.tribes.transport.ReplicationTransmitter</code>,
+  the sender is a fairly empty shell with not much logic around a fairly 
complex <code>&lt;Transport&gt;</code>
+  component the implements the actual delivery mechanism.
+  </p>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a name="Concurrent Parallel Delivery"><!--()--></a><a 
name="Concurrent_Parallel_Delivery"><strong>Concurrent Parallel 
Delivery</strong></a></font></td></tr><tr><td><blockquote>
+  <p>
+  In the default <code>transport</code> implementation, 
<code>org.apache.catalina.tribes.transport.nio.PooledParallelSender</code>,
+  Apache Tribes implements what we like to call "Concurrent Parallel 
Delivery". 
+  This means that we can send a message to more than one destination at the 
same time(parallel), and
+  deliver two messages to the same destination at the same time(concurrent). 
Combine these two and we have 
+  "Concurrent Parallel Delivery".
+  </p>
+  <p>
+  When is this useful? The simplest example we can think of is when part of 
your code is sending a 10MB message,
+  like a war file being deployed, and you need to push through a small 10KB 
message, say a session being replicated,
+  you don't have to wait for the 10MB message to finish, as a separate thread 
will push in the small message 
+  transmission at the same time. Currently there is no interrupt, pause or 
priority mechanism available, but check back soon.
+  </p>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a name="Nested Elements"><!--()--></a><a 
name="Nested_Elements"><strong>Nested 
Elements</strong></a></font></td></tr><tr><td><blockquote>
+ <p>
+   The nested element <code>&lt;Transport&gt;</code> is is not required, by 
encouraged, as this is where
+   you would set all the socket options for the outgoing messages. Please see 
its attributes below.
+   There are two implementations, in a similar manner to the <a 
href="cluster-receiver.html">receiver</a>, one is non-blocking
+   based and the other is built using blocking IO. <br>
+   <code>org.apache.catalina.tribes.transport.bio.PooledMultiSender</code> is 
the blocking implementation and 
+   <code>org.apache.catalina.tribes.transport.nio.PooledParallelSender</code>.
+   Parallel delivery is not available for the blocking implementation due to 
the fact that it is blocking a thread on sending data.
+ </p>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a 
name="Attributes"><strong>Attributes</strong></a></font></td></tr><tr><td><blockquote>
+  <table cellpadding="2" cellspacing="0" border="0"><tr><td 
bgcolor="#828DA6"><font face="arial,helvetica.sanserif" color="#ffffff"><a 
name="Common Sender Attributes"><!--()--></a><a 
name="Common_Sender_Attributes"><strong>Common Sender 
Attributes</strong></a></font></td></tr><tr><td><blockquote>
+    <table cellpadding="5" border="1"><tr><th bgcolor="#023264" 
width="15%"><font color="#ffffff">Attribute</font></th><th bgcolor="#023264" 
width="85%"><font color="#ffffff">Description</font></th></tr><tr><td 
valign="center" align="left"><strong><code>className</code></strong></td><td 
valign="center" align="left">
+        Required, only available implementation is 
<code>org.apache.catalina.tribes.transport.ReplicationTransmitter</code>
+      </td></tr></table>
+  </blockquote></td></tr></table>
+  <table cellpadding="2" cellspacing="0" border="0"><tr><td 
bgcolor="#828DA6"><font face="arial,helvetica.sanserif" color="#ffffff"><a 
name="Common Transport Attributes"><!--()--></a><a 
name="Common_Transport_Attributes"><strong>Common Transport 
Attributes</strong></a></font></td></tr><tr><td><blockquote>
+    <table cellpadding="5" border="1"><tr><th bgcolor="#023264" 
width="15%"><font color="#ffffff">Attribute</font></th><th bgcolor="#023264" 
width="85%"><font color="#ffffff">Description</font></th></tr><tr><td 
valign="center" align="left"><strong><code>className</code></strong></td><td 
valign="center" align="left">
+        Required, an implementation of the 
<code>org.apache.catalina.tribes.transport.MultiPointSender</code>.<br>
+        Non-blocking implementation is 
<code>org.apache.catalina.tribes.transport.nio.PooledParallelSender</code><br>
+        Blocking implementation is 
<code>org.apache.catalina.tribes.transport.bio.PooledMultiSender</code>
+      </td></tr><tr><td valign="center" 
align="left"><code>rxBufSize</code></td><td valign="center" align="left">
+        The receive buffer size on the socket.
+        Default value is <code>25188</code> bytes.
+      </td></tr><tr><td valign="center" 
align="left"><code>txBufSize</code></td><td valign="center" align="left">
+       The send buffer size on the socket.
+       Default value is <code>43800</code> bytes.
+      </td></tr><tr><td valign="center" 
align="left"><code>directBuffer</code></td><td valign="center" align="left">
+       Possible values are <code>true</code> or <code>false</code>. 
+       Set to true if you want the receiver to use direct bytebuffers when 
writing data
+       to the sockets. Default value is <code>false</code>
+      </td></tr><tr><td valign="center" 
align="left"><code>keepAliveCount</code></td><td valign="center" align="left">
+       The number of requests that can go through the socket before the socket 
is closed, and reopened
+       for the next request. The default value is <code>-1</code>, which is 
unlimited.
+      </td></tr><tr><td valign="center" 
align="left"><code>keepAliveTime</code></td><td valign="center" align="left">
+       The number of milliseconds a connection is kept open after its been 
opened.
+       The default value is <code>-1</code>, which is unlimited.
+      </td></tr><tr><td valign="center" 
align="left"><code>timeout</code></td><td valign="center" align="left">
+        Sets the SO_TIMEOUT option on the socket. The value is in milliseconds 
and the default value is <code>3000</code> 
+        milliseconds.(3 seconds) This timeout starts when a message send 
attempt is starting, until the transfer has been completed.
+        For the NIO sockets, this will mean, that the caller can guarantee 
that we will not attempt sending the message
+        longer than this timeout value. For the blocking IO implementation, 
this translated directly to the soTimeout.<br>
+        A timeout will not spawn a retry attempt, in order to guarantee the 
return of the application thread.
+      </td></tr><tr><td valign="center" 
align="left"><code>maxRetryAttempts</code></td><td valign="center" align="left">
+        How many times do we retry a failed message, that received a 
IOException at the socket level.
+        The default value is <code>1</code>, meaning we will retry a message 
that has failed once. 
+        In other words, we will attempt a message send no more than twice. One 
is the original send, and one is the 
+        <code>maxRetryAttempts</code>.
+      </td></tr><tr><td valign="center" 
align="left"><code>ooBInline</code></td><td valign="center" align="left">
+        Boolean value for the socket OOBINLINE option. Possible values are 
<code>true</code> or <code>false</code>.
+      </td></tr><tr><td valign="center" 
align="left"><code>soKeepAlive</code></td><td valign="center" align="left">
+        Boolean value for the socket SO_KEEPALIVE option. Possible values are 
<code>true</code> or <code>false</code>.
+      </td></tr><tr><td valign="center" 
align="left"><code>soLingerOn</code></td><td valign="center" align="left">
+        Boolean value to determine whether to use the SO_LINGER socket option. 
+        Possible values are <code>true</code> or <code>false</code>. Default 
value is <code>true</code>.
+      </td></tr><tr><td valign="center" 
align="left"><code>soLingerTime</code></td><td valign="center" align="left">
+        Sets the SO_LINGER socket option time value. The value is in seconds. 
+        The default value is <code>3</code> seconds.
+      </td></tr><tr><td valign="center" 
align="left"><code>soReuseAddress</code></td><td valign="center" align="left">
+       Boolean value for the socket SO_REUSEADDR option. Possible values are 
<code>true</code> or <code>false</code>.
+      </td></tr><tr><td valign="center" 
align="left"><code>soTrafficClass</code></td><td valign="center" align="left">
+       Sets the traffic class level for the socket, the value is between 0 and 
255.
+       Default value is <code>int soTrafficClass = 0x04 | 0x08 | 0x010;</code>
+       Different values are defined in <a 
href="http://java.sun.com/j2se/1.5.0/docs/api/java/net/Socket.html#setTrafficClass(int)">
+       java.net.Socket#setTrafficClass(int)</a>.
+      </td></tr><tr><td valign="center" 
align="left"><code>tcpNoDelay</code></td><td valign="center" align="left">
+       Boolean value for the socket TCP_NODELAY option. Possible values are 
<code>true</code> or <code>false</code>.
+       The default value is <code>true</code>
+      </td></tr><tr><td valign="center" 
align="left"><code>throwOnFailedAck</code></td><td valign="center" align="left">
+       Boolean value, default value is <code>true</code>.
+       If set to true, the sender will throw a 
<code>org.apache.catalina.tribes.RemoteProcessException</code>
+       when we receive a negative ack from the remote member.
+       Set to false, and Tribes will treat a positive ack the same way as a 
negative ack, that the message was received.
+      </td></tr></table>
+  </blockquote></td></tr></table>
+  <table cellpadding="2" cellspacing="0" border="0"><tr><td 
bgcolor="#828DA6"><font face="arial,helvetica.sanserif" color="#ffffff"><a 
name="PooledParallelSender Attributes"><!--()--></a><a 
name="PooledParallelSender_Attributes"><strong>PooledParallelSender 
Attributes</strong></a></font></td></tr><tr><td><blockquote>
+    <table cellpadding="5" border="1"><tr><th bgcolor="#023264" 
width="15%"><font color="#ffffff">Attribute</font></th><th bgcolor="#023264" 
width="85%"><font color="#ffffff">Description</font></th></tr><tr><td 
valign="center" align="left"><code>poolSize</code></td><td valign="center" 
align="left">
+        The maximum number of concurrent connections from A to B.
+        The value is based on a per-destination count.
+        The default value is <code>25</code>
+      </td></tr></table>
+  </blockquote></td></tr></table>
+</blockquote></td></tr></table></td></tr><!--FOOTER SEPARATOR--><tr><td 
colspan="2"><hr size="1" noshade></td></tr><!--PAGE FOOTER--><tr><td 
colspan="2"><div align="center"><font size="-1" color="#525D76"><em>
+        Copyright &copy; 1999-2010, Apache Software Foundation
+        </em></font></div></td></tr></table></body></html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/5be16a28/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster-valve.html
----------------------------------------------------------------------
diff --git 
a/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster-valve.html 
b/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster-valve.html
new file mode 100644
index 0000000..60550ea
--- /dev/null
+++ b/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster-valve.html
@@ -0,0 +1,61 @@
+<html><head><META http-equiv="Content-Type" content="text/html; 
charset=iso-8859-1"><title>Apache Tomcat Configuration Reference - The Cluster 
Valve object</title><meta content="Filip Hanik" name="author"><style 
media="print" type="text/css">
+                       .noPrint {display: none;}
+                       td#mainBody {width: 100%;}
+               </style></head><body vlink="#525D76" alink="#525D76" 
link="#525D76" text="#000000" bgcolor="#ffffff"><table cellspacing="0" 
width="100%" border="0"><!--PAGE HEADER--><tr><td><!--PROJECT LOGO--><a 
href="http://tomcat.apache.org/";><img border="0" alt="
+    The Apache Tomcat Servlet/JSP Container
+  " align="right" src="../images/tomcat.gif"></a></td><td><h1><font 
face="arial,helvetica,sanserif">Apache Tomcat 
6.0</font></h1></td><td><!--APACHE LOGO--><a href="http://www.apache.org/";><img 
border="0" alt="Apache Logo" align="right" 
src="../images/asf-logo.gif"></a></td></tr></table><table cellspacing="4" 
width="100%" border="0"><!--HEADER SEPARATOR--><tr><td colspan="2"><hr size="1" 
noshade></td></tr><tr><!--LEFT SIDE NAVIGATION--><td class="noPrint" nowrap 
valign="top" width="20%"><p><strong>Links</strong></p><ul><li><a 
href="../index.html">Docs Home</a></li><li><a href="index.html">Config Ref. 
Home</a></li></ul><p><strong>Top Level Elements</strong></p><ul><li><a 
href="server.html">Server</a></li><li><a 
href="service.html">Service</a></li></ul><p><strong>Executors</strong></p><ul><li><a
 
href="executor.html">Executor</a></li></ul><p><strong>Connectors</strong></p><ul><li><a
 href="http.html">HTTP</a></li><li><a 
href="ajp.html">AJP</a></li></ul><p><strong>Containers</strong></p>
 <ul><li><a href="context.html">Context</a></li><li><a 
href="engine.html">Engine</a></li><li><a href="host.html">Host</a></li><li><a 
href="cluster.html">Cluster</a></li></ul><p><strong>Nested 
Components</strong></p><ul><li><a 
href="listeners.html">Listeners</a></li><li><a 
href="globalresources.html">Global Resources</a></li><li><a 
href="loader.html">Loader</a></li><li><a 
href="manager.html">Manager</a></li><li><a 
href="realm.html">Realm</a></li><li><a 
href="resources.html">Resources</a></li><li><a 
href="valve.html">Valve</a></li></ul><p><strong>Cluster 
Elements</strong></p><ul><li><a href="cluster.html">Cluster</a></li><li><a 
href="cluster-manager.html">Manager</a></li><li><a 
href="cluster-channel.html">Channel</a></li><li><a 
href="cluster-membership.html">Channel/Membership</a></li><li><a 
href="cluster-sender.html">Channel/Sender</a></li><li><a 
href="cluster-receiver.html">Channel/Receiver</a></li><li><a 
href="cluster-interceptor.html">Channel/Interceptor</a></li><li><a href="cluste
 r-valve.html">Valve</a></li><li><a 
href="cluster-deployer.html">Deployer</a></li><li><a 
href="cluster-listener.html">ClusterListener</a></li></ul><p><strong>Global 
Settings</strong></p><ul><li><a href="systemprops.html">System 
properties</a></li></ul></td><!--RIGHT SIDE MAIN BODY--><td id="mainBody" 
align="left" valign="top" width="80%"><h1>Apache Tomcat Configuration 
Reference</h1><h2>The Cluster Valve object</h2><table cellpadding="2" 
cellspacing="0" border="0"><tr><td bgcolor="#525D76"><font 
face="arial,helvetica.sanserif" color="#ffffff"><a name="Table of 
Contents"><!--()--></a><a name="Table_of_Contents"><strong>Table of 
Contents</strong></a></font></td></tr><tr><td><blockquote>
+<ul><li><a href="#Introduction">Introduction</a></li><li><a 
href="#org.apache.catalina.ha.tcp.ReplicationValve">org.apache.catalina.ha.tcp.ReplicationValve</a><ol><li><a
 
href="#org.apache.catalina.ha.tcp.ReplicationValve/Attributes">Attributes</a></li></ol></li><li><a
 
href="#org.apache.catalina.ha.session.JvmRouteBinderValve">org.apache.catalina.ha.session.JvmRouteBinderValve</a><ol><li><a
 
href="#org.apache.catalina.ha.session.JvmRouteBinderValve/Attributes">Attributes</a></li></ol></li></ul>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a 
name="Introduction"><strong>Introduction</strong></a></font></td></tr><tr><td><blockquote>
+  <p>
+  A cluster valve is no different from any other <a href="valve.html">Tomcat 
<code>Valve</code></a>.
+  The cluster valves are interceptors in the invocation chain for HTTP 
requests, and the clustering implementation
+  uses these valves to make intelligent decision around data and when data 
should be replicated.
+  </p>
+  <p>
+  A cluster valve must implement the 
<code>org.apache.catalina.ha.ClusterValve</code> interface.
+  This is a simple interface that extends the 
<code>org.apache.catalina.Valve</code> interface.
+  </p>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a 
name="org.apache.catalina.ha.tcp.ReplicationValve"><strong>org.apache.catalina.ha.tcp.ReplicationValve</strong></a></font></td></tr><tr><td><blockquote>
+  The <code>ReplicationValve</code> will notify the cluster at the end of a 
HTTP request
+  so that the cluster can make a decision whether there is data to be 
replicated or not.
+  <table cellpadding="2" cellspacing="0" border="0"><tr><td 
bgcolor="#828DA6"><font face="arial,helvetica.sanserif" color="#ffffff"><a 
name="org.apache.catalina.ha.tcp.ReplicationValve/Attributes"><strong>Attributes</strong></a></font></td></tr><tr><td><blockquote>
+    <table cellpadding="5" border="1"><tr><th bgcolor="#023264" 
width="15%"><font color="#ffffff">Attribute</font></th><th bgcolor="#023264" 
width="85%"><font color="#ffffff">Description</font></th></tr><tr><td 
valign="center" align="left"><strong><code>className</code></strong></td><td 
valign="center" align="left">
+        Set value to <code>org.apache.catalina.ha.tcp.ReplicationValve</code>
+      </td></tr><tr><td valign="center" 
align="left"><code>filter</code></td><td valign="center" align="left">
+        For known file extensions or urls, you can use a filter to 
+        notify the cluster that the session has not been modified during this 
+        request and the cluster doesn't have to probe the session managers for 
changes.
+        If there is a filter match, the cluster assumes there has been no 
session change.
+        An example filter would look like 
<code>filter=".*\.gif;.*\.js;.*\.jpg;.*\.png;.*\.htm;.*\.html;.*\.css;.*\.txt;"</code>
+        The filter uses regular expressions and each filter is delimited by a 
semi colon.
+        <code>Pattern#compile(java.lang.String)</code>
+      </td></tr><tr><td valign="center" 
align="left"><code>primaryIndicator</code></td><td valign="center" align="left">
+        Boolean value, so to true, and the replication valve will insert a 
request attribute with the name
+        defined by the <code>primaryIndicatorName</code> attribute.
+        The value inserted into the request attribute is either 
<code>Boolean.TRUE</code> or 
+        <code>Boolean.FALSE</code>
+      </td></tr><tr><td valign="center" 
align="left"><code>primaryIndicatorName</code></td><td valign="center" 
align="left">
+        Default value is 
<code>org.apache.catalina.ha.tcp.isPrimarySession</code>
+        The value defined here is the name of the request attribute that 
contains the boolean value
+        if the session is primary on this server or not.
+      </td></tr><tr><td valign="center" 
align="left"><code>statistics</code></td><td valign="center" align="left">
+        Boolean value. Set to <code>true</code> if you want the valve to 
collect request statistics.
+        Default value is <code>false</code>
+      </td></tr></table>
+  </blockquote></td></tr></table>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a 
name="org.apache.catalina.ha.session.JvmRouteBinderValve"><strong>org.apache.catalina.ha.session.JvmRouteBinderValve</strong></a></font></td></tr><tr><td><blockquote>
+  In case of a mod_jk failover, the <code>JvmRouteBinderValve</code> will 
replace the 
+  <code>jvmWorker</code> attribute in the session Id, to make future requests 
stick to this
+  node. If you want failback capability, don't enable this valve, but if you 
want your failover to stick,
+  and for mod_jk not to have to keep probing the node that went down, you use 
this valve.
+  <table cellpadding="2" cellspacing="0" border="0"><tr><td 
bgcolor="#828DA6"><font face="arial,helvetica.sanserif" color="#ffffff"><a 
name="org.apache.catalina.ha.session.JvmRouteBinderValve/Attributes"><strong>Attributes</strong></a></font></td></tr><tr><td><blockquote>
+    <table cellpadding="5" border="1"><tr><th bgcolor="#023264" 
width="15%"><font color="#ffffff">Attribute</font></th><th bgcolor="#023264" 
width="85%"><font color="#ffffff">Description</font></th></tr><tr><td 
valign="center" align="left"><strong><code>className</code></strong></td><td 
valign="center" align="left">
+        <code>org.apache.catalina.ha.session.JvmRouteBinderValve</code>
+      </td></tr><tr><td valign="center" 
align="left"><code>enabled</code></td><td valign="center" align="left">
+        Default value is <code>true</code>
+        Runtime attribute to turn on and off turn over of the session's 
jvmRoute value.
+      </td></tr></table>
+  </blockquote></td></tr></table>
+</blockquote></td></tr></table></td></tr><!--FOOTER SEPARATOR--><tr><td 
colspan="2"><hr size="1" noshade></td></tr><!--PAGE FOOTER--><tr><td 
colspan="2"><div align="center"><font size="-1" color="#525D76"><em>
+        Copyright &copy; 1999-2010, Apache Software Foundation
+        </em></font></div></td></tr></table></body></html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/5be16a28/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster.html
----------------------------------------------------------------------
diff --git 
a/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster.html 
b/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster.html
new file mode 100644
index 0000000..9ad844a
--- /dev/null
+++ b/attic/servers/apache-tomcat-6.0.29/webapps/docs/config/cluster.html
@@ -0,0 +1,122 @@
+<html><head><META http-equiv="Content-Type" content="text/html; 
charset=iso-8859-1"><title>Apache Tomcat Configuration Reference - The Cluster 
object</title><meta content="Filip Hanik" name="author"><style media="print" 
type="text/css">
+                       .noPrint {display: none;}
+                       td#mainBody {width: 100%;}
+               </style></head><body vlink="#525D76" alink="#525D76" 
link="#525D76" text="#000000" bgcolor="#ffffff"><table cellspacing="0" 
width="100%" border="0"><!--PAGE HEADER--><tr><td><!--PROJECT LOGO--><a 
href="http://tomcat.apache.org/";><img border="0" alt="
+    The Apache Tomcat Servlet/JSP Container
+  " align="right" src="../images/tomcat.gif"></a></td><td><h1><font 
face="arial,helvetica,sanserif">Apache Tomcat 
6.0</font></h1></td><td><!--APACHE LOGO--><a href="http://www.apache.org/";><img 
border="0" alt="Apache Logo" align="right" 
src="../images/asf-logo.gif"></a></td></tr></table><table cellspacing="4" 
width="100%" border="0"><!--HEADER SEPARATOR--><tr><td colspan="2"><hr size="1" 
noshade></td></tr><tr><!--LEFT SIDE NAVIGATION--><td class="noPrint" nowrap 
valign="top" width="20%"><p><strong>Links</strong></p><ul><li><a 
href="../index.html">Docs Home</a></li><li><a href="index.html">Config Ref. 
Home</a></li></ul><p><strong>Top Level Elements</strong></p><ul><li><a 
href="server.html">Server</a></li><li><a 
href="service.html">Service</a></li></ul><p><strong>Executors</strong></p><ul><li><a
 
href="executor.html">Executor</a></li></ul><p><strong>Connectors</strong></p><ul><li><a
 href="http.html">HTTP</a></li><li><a 
href="ajp.html">AJP</a></li></ul><p><strong>Containers</strong></p>
 <ul><li><a href="context.html">Context</a></li><li><a 
href="engine.html">Engine</a></li><li><a href="host.html">Host</a></li><li><a 
href="cluster.html">Cluster</a></li></ul><p><strong>Nested 
Components</strong></p><ul><li><a 
href="listeners.html">Listeners</a></li><li><a 
href="globalresources.html">Global Resources</a></li><li><a 
href="loader.html">Loader</a></li><li><a 
href="manager.html">Manager</a></li><li><a 
href="realm.html">Realm</a></li><li><a 
href="resources.html">Resources</a></li><li><a 
href="valve.html">Valve</a></li></ul><p><strong>Cluster 
Elements</strong></p><ul><li><a href="cluster.html">Cluster</a></li><li><a 
href="cluster-manager.html">Manager</a></li><li><a 
href="cluster-channel.html">Channel</a></li><li><a 
href="cluster-membership.html">Channel/Membership</a></li><li><a 
href="cluster-sender.html">Channel/Sender</a></li><li><a 
href="cluster-receiver.html">Channel/Receiver</a></li><li><a 
href="cluster-interceptor.html">Channel/Interceptor</a></li><li><a href="cluste
 r-valve.html">Valve</a></li><li><a 
href="cluster-deployer.html">Deployer</a></li><li><a 
href="cluster-listener.html">ClusterListener</a></li></ul><p><strong>Global 
Settings</strong></p><ul><li><a href="systemprops.html">System 
properties</a></li></ul></td><!--RIGHT SIDE MAIN BODY--><td id="mainBody" 
align="left" valign="top" width="80%"><h1>Apache Tomcat Configuration 
Reference</h1><h2>The Cluster object</h2><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a name="Table of Contents"><!--()--></a><a 
name="Table_of_Contents"><strong>Table of 
Contents</strong></a></font></td></tr><tr><td><blockquote>
+<ul><li><a href="#Introduction">Introduction</a></li><li><a 
href="#Engine_vs_Host_placement">Engine vs Host placement</a></li><li><a 
href="#Context_Attribute_Replication">Context Attribute 
Replication</a></li><li><a href="#Nested_Components">Nested 
Components</a></li><li><a href="#Deprecated_configuration_options">Deprecated 
configuration options</a></li><li><a 
href="#Attributes">Attributes</a><ol><li><a 
href="#SimpleTcpCluster_Attributes">SimpleTcpCluster 
Attributes</a></li></ol></li></ul>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a 
name="Introduction"><strong>Introduction</strong></a></font></td></tr><tr><td><blockquote>
+  <p>
+  The tomcat cluster implementation provides session replication, context 
attribute replication and
+  cluster wide WAR file deployment.
+  While the <code>Cluster</code> configuration is fairly complex, the default 
configuration will work
+  for most people out of the box. </p><p>
+  The Tomcat Cluster implementation is very extensible, and hence we have 
exposed a myriad of options,
+  making the configuration seem like a lot, but don't lose faith, instead you 
have a tremendous control
+  over what is going on.</p>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a name="Engine vs Host placement"><!--()--></a><a 
name="Engine_vs_Host_placement"><strong>Engine vs Host 
placement</strong></a></font></td></tr><tr><td><blockquote>
+  <p>
+   You can place the <code>&lt;Cluster&gt;</code> element inside either the 
<code>&lt;Engine&gt;</code>
+   container or the <code>&lt;Host&gt;</code> container.<br>
+   Placing it in the engine, means that you will support clustering in all 
virtual hosts of Tomcat,
+   and share the messaging component. When you place the 
<code>&lt;Cluster&gt;</code> inside the <code>&lt;Engine&gt;</code>
+   element, the cluster will append the host name of each session manager to 
the managers name so that two contexts with 
+   the same name but sitting inside two different hosts will be 
distinguishable.
+  </p>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a name="Context Attribute Replication"><!--()--></a><a 
name="Context_Attribute_Replication"><strong>Context Attribute 
Replication</strong></a></font></td></tr><tr><td><blockquote>
+  <p>To configure context attribute replication, simply do this by swapping 
out the context implementation
+  used for your application context.
+    <div align="left"><table border="0" cellpadding="0" 
cellspacing="4"><tr><td height="1" width="1" bgcolor="#023264"><img border="0" 
hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td><td height="1" bgcolor="#023264"><img border="0" 
hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td><td height="1" width="1" bgcolor="#023264"><img 
border="0" hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td></tr><tr><td width="1" bgcolor="#023264"><img 
border="0" hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td><td height="1" bgcolor="#ffffff"><pre>&lt;Context 
className="org.apache.catalina.ha.context.ReplicatedContext"/&gt;</pre></td><td 
width="1" bgcolor="#023264"><img border="0" hspace="0" vspace="0" height="1" 
width="1" alt="" src="../images/void.gif"></td></tr><tr><td height="1" 
width="1" bgcolor="#023264"><img border="0" hspace="0" vspace="0" height="1" 
width="1" alt="" src="
 ../images/void.gif"></td><td height="1" bgcolor="#023264"><img border="0" 
hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td><td height="1" width="1" bgcolor="#023264"><img 
border="0" hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td></tr></table></div>
+    This context extends the Tomcat <code><a 
href="context.html">StandardContext</a></code>
+    so all the options from the <a href="context.html">base implementation</a> 
are valid.
+  </p>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a name="Nested Components"><!--()--></a><a 
name="Nested_Components"><strong>Nested 
Components</strong></a></font></td></tr><tr><td><blockquote>
+  <p><b><a href="cluster-manager.html">Manager</a>:</b> <br>
+    The session manager element identifies what kind of session manager is 
used in this cluster implementation.
+    This manager configuration is identical to the one you would use in a 
regular <code><a 
href="context.html#Nested%20xComponents">&lt;Context&gt;</a></code> 
configuration.
+    <br>The default value is the 
<code>org.apache.catalina.ha.session.DeltaManager</code> that is closely 
coupled with
+    the <code>SimpleTcpCluster</code> implementation. Other managers like the 
<code>org.apache.catalina.ha.session.BackupManager</code>
+    are/could be loosely coupled and don't rely on the 
<code>SimpleTcpCluster</code> for its data replication.
+  </p>
+  <p><b><a href="cluster-channel.html">Channel</a>:</b> <br>
+    The Channel and its sub components are all part of the IO layer 
+    for the cluster group, and is a module in it's own that we have nick named 
"Tribes"
+    <br>
+    Any configuring and tuning of the network layer, the messaging and the 
membership logic
+    will be done in the channel and its nested components.
+    You can always find out more about <a 
href="../tribes/introduction.html">Apache Tribes</a>
+  </p>
+  <p><b><a href="cluster-valve.html">Valve</a>:</b> <br>
+    The Tomcat Cluster implementation uses <code>Tomcat <a 
href="valve.html">Valves</a></code> to
+    track when requests enter and exit the servlet container. It uses these 
valves to be able to make
+    intelligent decisions on when to replicate data, which is always at the 
end of a request.
+  </p>
+  <p><b><a href="cluster-deployer.html">Deployer</a>:</b> <br>
+    The Deployer component is the Tomcat Farm Deployer. It allows you to 
deploy and undeploy applications
+    cluster wide.
+  </p>
+  <p><b><a href="cluster-listener.html">ClusterListener</a>:</b> <br>
+    ClusterListener's are used to track messages sent and received using the 
<code>SimpleTcpCluster</code>.
+    If you wish to track messages, you can add a listener here, or you can add 
a valve to the channel object.
+  </p>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a name="Deprecated configuration options"><!--()--></a><a 
name="Deprecated_configuration_options"><strong>Deprecated configuration 
options</strong></a></font></td></tr><tr><td><blockquote>
+  <p>
+    <b>Deprecated settings:</b> In the previous version of Tomcat you were 
able to control session
+       manager settings using manager.&lt;property&gt;=value.
+       This has been discontinued, as the way it was written interferes with 
+       the ability to support multiple different manager classes under one 
cluster implementation,
+       as the same properties might have the different effect on different 
managers.
+  </p>
+</blockquote></td></tr></table><table cellpadding="2" cellspacing="0" 
border="0"><tr><td bgcolor="#525D76"><font face="arial,helvetica.sanserif" 
color="#ffffff"><a 
name="Attributes"><strong>Attributes</strong></a></font></td></tr><tr><td><blockquote>
+  <table cellpadding="2" cellspacing="0" border="0"><tr><td 
bgcolor="#828DA6"><font face="arial,helvetica.sanserif" color="#ffffff"><a 
name="SimpleTcpCluster Attributes"><!--()--></a><a 
name="SimpleTcpCluster_Attributes"><strong>SimpleTcpCluster 
Attributes</strong></a></font></td></tr><tr><td><blockquote>
+  <table cellpadding="5" border="1"><tr><th bgcolor="#023264" 
width="15%"><font color="#ffffff">Attribute</font></th><th bgcolor="#023264" 
width="85%"><font color="#ffffff">Description</font></th></tr><tr><td 
valign="center" align="left"><strong><code>className</code></strong></td><td 
valign="center" align="left">
+      <p>The main cluster class, currently only one is available,
+         <code>org.apache.catalina.ha.tcp.SimpleTcpCluster</code>
+      </p>
+    </td></tr><tr><td valign="center" 
align="left"><strong><code>channelSendOptions</code></strong></td><td 
valign="center" align="left">
+      <p>The Tribes channel send options, default is <code>8</code>.<br>
+         This option is used to set the flag that all messages sent through 
the 
+         SimpleTcpCluster uses. The flag decides how the messages are sent, 
and is a simple logical OR.<br>
+         
+      <div align="left"><table border="0" cellpadding="0" 
cellspacing="4"><tr><td height="1" width="1" bgcolor="#023264"><img border="0" 
hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td><td height="1" bgcolor="#023264"><img border="0" 
hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td><td height="1" width="1" bgcolor="#023264"><img 
border="0" hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td></tr><tr><td width="1" bgcolor="#023264"><img 
border="0" hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td><td height="1" bgcolor="#ffffff"><pre>
+        int options= Channel.SEND_OPTIONS_ASYNCHRONOUS | 
+                     Channel.SEND_OPTIONS_SYNCHRONIZED_ACK | 
+                     Channel.SEND_OPTIONS_USE_ACK;
+      </pre></td><td width="1" bgcolor="#023264"><img border="0" hspace="0" 
vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td></tr><tr><td height="1" width="1" 
bgcolor="#023264"><img border="0" hspace="0" vspace="0" height="1" width="1" 
alt="" src="../images/void.gif"></td><td height="1" bgcolor="#023264"><img 
border="0" hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td><td height="1" width="1" bgcolor="#023264"><img 
border="0" hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td></tr></table></div>
+      Some of the values are:<br>
+      <code>Channel.SEND_OPTIONS_SYNCHRONIZED_ACK = 0x0004</code><br>
+      <code>Channel.SEND_OPTIONS_ASYNCHRONOUS = 0x0008</code><br>
+      <code>Channel.SEND_OPTIONS_USE_ACK = 0x0002</code><br>
+      So to use ACK and ASYNC messaging, the flag would be <code>10 (8+2) or 
0x000B</code><br>
+      </p>
+    </td></tr><tr><td valign="center" 
align="left"><code>channelStartOptions</code></td><td valign="center" 
align="left">
+      <p>Sets the start and stop flags for the &lt;Channel&gt; object used by 
the cluster.
+         The default is <code>Channel.DEFAULT</code> which starts all the 
channel services, such as 
+         sender, receiver, multicast sender and multicast receiver.
+         The following flags are available today:
+         <div align="left"><table border="0" cellpadding="0" 
cellspacing="4"><tr><td height="1" width="1" bgcolor="#023264"><img border="0" 
hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td><td height="1" bgcolor="#023264"><img border="0" 
hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td><td height="1" width="1" bgcolor="#023264"><img 
border="0" hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td></tr><tr><td width="1" bgcolor="#023264"><img 
border="0" hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td><td height="1" bgcolor="#ffffff"><pre>
+           Channel.DEFAULT = Channel.SND_RX_SEQ (1)| Channel.SND_TX_SEQ (2)| 
Channel.MBR_RX_SEQ (4)| Channel.MBR_TX_SEQ (8);
+         </pre></td><td width="1" bgcolor="#023264"><img border="0" hspace="0" 
vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td></tr><tr><td height="1" width="1" 
bgcolor="#023264"><img border="0" hspace="0" vspace="0" height="1" width="1" 
alt="" src="../images/void.gif"></td><td height="1" bgcolor="#023264"><img 
border="0" hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td><td height="1" width="1" bgcolor="#023264"><img 
border="0" hspace="0" vspace="0" height="1" width="1" alt="" 
src="../images/void.gif"></td></tr></table></div>
+         To start a channel without multicasting, you would want to use the 
value <code>Channel.SND_RX_SEQ | Channel.SND_TX_SEQ</code>
+         that equals to <code>3</code>.
+      </p>
+    </td></tr><tr><td valign="center" 
align="left"><code>heartbeatBackgroundEnabled</code></td><td valign="center" 
align="left">
+      <p>Enable this flag don't forget to disable the channel heartbeat thread.
+      </p>
+    </td></tr><tr><td valign="center" 
align="left"><code>doClusterLog</code></td><td valign="center" align="left">
+      <p><b>Deprecated since 6.0.0</b></p>
+      <p>Possible values are <code>true</code> or <code>false</code><br>
+         Value is inherited from Tomcat 5.5 and has no official meaning.
+         to configure logging, use the standard tomcat logging configuration.
+      </p>
+    </td></tr><tr><td valign="center" 
align="left"><code>clusterLogName</code></td><td valign="center" align="left">
+      <p><b>Deprecated since 6.0.0</b></p>
+      <p>
+        Value is inherited from Tomcat 5.5 and has no official meaning.
+         to configure logging, use the standard tomcat logging configuration.
+      </p>
+    </td></tr></table>
+  </blockquote></td></tr></table>
+</blockquote></td></tr></table></td></tr><!--FOOTER SEPARATOR--><tr><td 
colspan="2"><hr size="1" noshade></td></tr><!--PAGE FOOTER--><tr><td 
colspan="2"><div align="center"><font size="-1" color="#525D76"><em>
+        Copyright &copy; 1999-2010, Apache Software Foundation
+        </em></font></div></td></tr></table></body></html>
\ No newline at end of file

Reply via email to