You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-dev@james.apache.org by rd...@apache.org on 2009/05/28 14:09:49 UTC

svn commit: r779578 [42/46] - in /james/site/trunk/www: mailet/ mailet/api/ mailet/api/xref-test/ mailet/api/xref-test/org/apache/mailet/ mailet/api/xref/ mailet/api/xref/org/apache/mailet/ mailet/base/ mailet/base/xref-test/ mailet/base/xref-test/org/...

Modified: james/site/trunk/www/server/head/xref/org/apache/james/socket/AbstractJamesService.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/server/head/xref/org/apache/james/socket/AbstractJamesService.html?rev=779578&r1=779577&r2=779578&view=diff
==============================================================================
--- james/site/trunk/www/server/head/xref/org/apache/james/socket/AbstractJamesService.html (original)
+++ james/site/trunk/www/server/head/xref/org/apache/james/socket/AbstractJamesService.html Thu May 28 12:08:58 2009
@@ -6,7 +6,7 @@
 <link type="text/css" rel="stylesheet" href="../../../../stylesheet.css" />
 </head>
 <body>
-<div id="overview"><a href="../../../../../../../../../../../workspace-seda-imap/target/site/apidocs/org/apache/james/socket/AbstractJamesService.html">View Javadoc</a></div><pre>
+<div id="overview"><a href="../../../../../apidocs/org/apache/james/socket/AbstractJamesService.html">View Javadoc</a></div><pre>
 
 <a name="1" href="#1">1</a>   <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment">**************************************************************</em>
 <a name="2" href="#2">2</a>   <em class="jxr_javadoccomment"> * Licensed to the Apache Software Foundation (ASF) under one   *</em>
@@ -64,754 +64,764 @@
 <a name="54" href="#54">54</a>  <strong class="jxr_keyword">import</strong> java.net.UnknownHostException;
 <a name="55" href="#55">55</a>  <strong class="jxr_keyword">import</strong> java.security.Provider;
 <a name="56" href="#56">56</a>  <strong class="jxr_keyword">import</strong> java.security.Security;
-<a name="57" href="#57">57</a>  
-<a name="58" href="#58">58</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="59" href="#59">59</a>  <em class="jxr_javadoccomment"> * Server which creates connection handlers. All new James service must</em>
-<a name="60" href="#60">60</a>  <em class="jxr_javadoccomment"> * inherit from this abstract implementation.</em>
-<a name="61" href="#61">61</a>  <em class="jxr_javadoccomment"> *</em>
-<a name="62" href="#62">62</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="63" href="#63">63</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">abstract</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../org/apache/james/socket/AbstractJamesService.html">AbstractJamesService</a> <strong class="jxr_keyword">extends</strong> AbstractHandlerFactory
-<a name="64" href="#64">64</a>      implements Serviceable, Configurable, Disposable, Initializable, ConnectionHandlerFactory, ObjectFactory {
-<a name="65" href="#65">65</a>  
-<a name="66" href="#66">66</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="67" href="#67">67</a>  <em class="jxr_javadoccomment">     * The default value for the connection timeout.</em>
-<a name="68" href="#68">68</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="69" href="#69">69</a>      <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> DEFAULT_TIMEOUT = 5* 60 * 1000;
-<a name="70" href="#70">70</a>  
-<a name="71" href="#71">71</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="72" href="#72">72</a>  <em class="jxr_javadoccomment">     * The name of the parameter defining the connection timeout.</em>
-<a name="73" href="#73">73</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="74" href="#74">74</a>      <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String TIMEOUT_NAME = <span class="jxr_string">"connectiontimeout"</span>;
-<a name="75" href="#75">75</a>  
-<a name="76" href="#76">76</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="77" href="#77">77</a>  <em class="jxr_javadoccomment">     * The default value for the connection backlog.</em>
-<a name="78" href="#78">78</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="79" href="#79">79</a>      <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> DEFAULT_BACKLOG = 5;
-<a name="80" href="#80">80</a>  
-<a name="81" href="#81">81</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="82" href="#82">82</a>  <em class="jxr_javadoccomment">     * The name of the parameter defining the connection backlog.</em>
-<a name="83" href="#83">83</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="84" href="#84">84</a>      <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String BACKLOG_NAME = <span class="jxr_string">"connectionBacklog"</span>;
-<a name="85" href="#85">85</a>  
-<a name="86" href="#86">86</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="87" href="#87">87</a>  <em class="jxr_javadoccomment">     * The name of the parameter defining the service hello name.</em>
-<a name="88" href="#88">88</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="89" href="#89">89</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String HELLO_NAME = <span class="jxr_string">"helloName"</span>;
-<a name="90" href="#90">90</a>  
-<a name="91" href="#91">91</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="92" href="#92">92</a>  <em class="jxr_javadoccomment">     * The ConnectionManager that spawns and manages service connections.</em>
-<a name="93" href="#93">93</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="94" href="#94">94</a>      <strong class="jxr_keyword">private</strong> <a href="../../../../org/apache/james/socket/JamesConnectionManager.html">JamesConnectionManager</a> connectionManager;
-<a name="95" href="#95">95</a>  
-<a name="96" href="#96">96</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="97" href="#97">97</a>  <em class="jxr_javadoccomment">     * The name of the thread group to be used by this service for </em>
-<a name="98" href="#98">98</a>  <em class="jxr_javadoccomment">     * generating connections</em>
-<a name="99" href="#99">99</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="100" href="#100">100</a>     <strong class="jxr_keyword">protected</strong> String threadGroup;
-<a name="101" href="#101">101</a> 
-<a name="102" href="#102">102</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="103" href="#103">103</a> <em class="jxr_javadoccomment">     * The thread pool used by this service that holds the threads</em>
-<a name="104" href="#104">104</a> <em class="jxr_javadoccomment">     * that service the client connections.</em>
-<a name="105" href="#105">105</a> <em class="jxr_javadoccomment">     */</em>
-<a name="106" href="#106">106</a>     <strong class="jxr_keyword">protected</strong> ThreadPool threadPool = <strong class="jxr_keyword">null</strong>;
-<a name="107" href="#107">107</a> 
-<a name="108" href="#108">108</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="109" href="#109">109</a> <em class="jxr_javadoccomment">     * The server socket type used to generate connections for this server.</em>
-<a name="110" href="#110">110</a> <em class="jxr_javadoccomment">     */</em>
-<a name="111" href="#111">111</a>     <strong class="jxr_keyword">protected</strong> String serverSocketType = <span class="jxr_string">"plain"</span>;
-<a name="112" href="#112">112</a> 
-<a name="113" href="#113">113</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="114" href="#114">114</a> <em class="jxr_javadoccomment">     * The port on which this service will be made available.</em>
-<a name="115" href="#115">115</a> <em class="jxr_javadoccomment">     */</em>
-<a name="116" href="#116">116</a>     <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">int</strong> port = -1;
-<a name="117" href="#117">117</a> 
-<a name="118" href="#118">118</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="119" href="#119">119</a> <em class="jxr_javadoccomment">     * Network interface to which the service will bind.  If not set,</em>
-<a name="120" href="#120">120</a> <em class="jxr_javadoccomment">     * the server binds to all available interfaces.</em>
-<a name="121" href="#121">121</a> <em class="jxr_javadoccomment">     */</em>
-<a name="122" href="#122">122</a>     <strong class="jxr_keyword">protected</strong> InetAddress bindTo = <strong class="jxr_keyword">null</strong>;
-<a name="123" href="#123">123</a> 
-<a name="124" href="#124">124</a>     <em class="jxr_comment">/*</em>
-<a name="125" href="#125">125</a> <em class="jxr_comment">     * The server socket associated with this service</em>
-<a name="126" href="#126">126</a> <em class="jxr_comment">     */</em>
-<a name="127" href="#127">127</a>     <strong class="jxr_keyword">protected</strong> ServerSocket serverSocket;
-<a name="128" href="#128">128</a> 
-<a name="129" href="#129">129</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="130" href="#130">130</a> <em class="jxr_javadoccomment">     * The name of the connection used by this service.  We need to</em>
-<a name="131" href="#131">131</a> <em class="jxr_javadoccomment">     * track this so we can tell the ConnectionManager which service</em>
-<a name="132" href="#132">132</a> <em class="jxr_javadoccomment">     * to disconnect upon shutdown.</em>
-<a name="133" href="#133">133</a> <em class="jxr_javadoccomment">     */</em>
-<a name="134" href="#134">134</a>     <strong class="jxr_keyword">protected</strong> String connectionName;
-<a name="135" href="#135">135</a> 
-<a name="136" href="#136">136</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="137" href="#137">137</a> <em class="jxr_javadoccomment">     * The maximum number of connections allowed for this service.</em>
-<a name="138" href="#138">138</a> <em class="jxr_javadoccomment">     */</em>
-<a name="139" href="#139">139</a>     <strong class="jxr_keyword">protected</strong> Integer connectionLimit;
-<a name="140" href="#140">140</a> 
-<a name="141" href="#141">141</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="142" href="#142">142</a> <em class="jxr_javadoccomment">     * The connection idle timeout.  Used primarily to prevent server</em>
-<a name="143" href="#143">143</a> <em class="jxr_javadoccomment">     * problems from hanging a connection.</em>
-<a name="144" href="#144">144</a> <em class="jxr_javadoccomment">     */</em>
-<a name="145" href="#145">145</a>     <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">int</strong> timeout;
-<a name="146" href="#146">146</a> 
-<a name="147" href="#147">147</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="148" href="#148">148</a> <em class="jxr_javadoccomment">     * The connection backlog.</em>
-<a name="149" href="#149">149</a> <em class="jxr_javadoccomment">     */</em>
-<a name="150" href="#150">150</a>     <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">int</strong> backlog;
-<a name="151" href="#151">151</a> 
-<a name="152" href="#152">152</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="153" href="#153">153</a> <em class="jxr_javadoccomment">     * The hello name for the service.</em>
-<a name="154" href="#154">154</a> <em class="jxr_javadoccomment">     */</em>
-<a name="155" href="#155">155</a>     <strong class="jxr_keyword">protected</strong> String helloName;
-<a name="156" href="#156">156</a> 
-<a name="157" href="#157">157</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="158" href="#158">158</a> <em class="jxr_javadoccomment">     * The component manager used by this service.</em>
-<a name="159" href="#159">159</a> <em class="jxr_javadoccomment">     */</em>
-<a name="160" href="#160">160</a>     <strong class="jxr_keyword">private</strong> ServiceManager componentManager;
-<a name="161" href="#161">161</a> 
-<a name="162" href="#162">162</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="163" href="#163">163</a> <em class="jxr_javadoccomment">     * Whether this service is enabled.</em>
-<a name="164" href="#164">164</a> <em class="jxr_javadoccomment">     */</em>
-<a name="165" href="#165">165</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">volatile</strong> <strong class="jxr_keyword">boolean</strong> enabled;
-<a name="166" href="#166">166</a> 
-<a name="167" href="#167">167</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="168" href="#168">168</a> <em class="jxr_javadoccomment">     * Flag holding the disposed state of the component.</em>
-<a name="169" href="#169">169</a> <em class="jxr_javadoccomment">     */</em>
-<a name="170" href="#170">170</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> m_disposed = false;
-<a name="171" href="#171">171</a> 
+<a name="57" href="#57">57</a>  <strong class="jxr_keyword">import</strong> java.util.concurrent.atomic.AtomicLong;
+<a name="58" href="#58">58</a>  
+<a name="59" href="#59">59</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="60" href="#60">60</a>  <em class="jxr_javadoccomment"> * Server which creates connection handlers. All new James service must</em>
+<a name="61" href="#61">61</a>  <em class="jxr_javadoccomment"> * inherit from this abstract implementation.</em>
+<a name="62" href="#62">62</a>  <em class="jxr_javadoccomment"> *</em>
+<a name="63" href="#63">63</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="64" href="#64">64</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">abstract</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../org/apache/james/socket/AbstractJamesService.html">AbstractJamesService</a> <strong class="jxr_keyword">extends</strong> AbstractHandlerFactory
+<a name="65" href="#65">65</a>      implements Serviceable, Configurable, Disposable, Initializable, ConnectionHandlerFactory, ObjectFactory {
+<a name="66" href="#66">66</a>  
+<a name="67" href="#67">67</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="68" href="#68">68</a>  <em class="jxr_javadoccomment">     * The default value for the connection timeout.</em>
+<a name="69" href="#69">69</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="70" href="#70">70</a>      <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> DEFAULT_TIMEOUT = 5* 60 * 1000;
+<a name="71" href="#71">71</a>  
+<a name="72" href="#72">72</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="73" href="#73">73</a>  <em class="jxr_javadoccomment">     * The name of the parameter defining the connection timeout.</em>
+<a name="74" href="#74">74</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="75" href="#75">75</a>      <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String TIMEOUT_NAME = <span class="jxr_string">"connectiontimeout"</span>;
+<a name="76" href="#76">76</a>  
+<a name="77" href="#77">77</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="78" href="#78">78</a>  <em class="jxr_javadoccomment">     * The default value for the connection backlog.</em>
+<a name="79" href="#79">79</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="80" href="#80">80</a>      <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> DEFAULT_BACKLOG = 5;
+<a name="81" href="#81">81</a>  
+<a name="82" href="#82">82</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="83" href="#83">83</a>  <em class="jxr_javadoccomment">     * The name of the parameter defining the connection backlog.</em>
+<a name="84" href="#84">84</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="85" href="#85">85</a>      <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String BACKLOG_NAME = <span class="jxr_string">"connectionBacklog"</span>;
+<a name="86" href="#86">86</a>  
+<a name="87" href="#87">87</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="88" href="#88">88</a>  <em class="jxr_javadoccomment">     * The name of the parameter defining the service hello name.</em>
+<a name="89" href="#89">89</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="90" href="#90">90</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String HELLO_NAME = <span class="jxr_string">"helloName"</span>;
+<a name="91" href="#91">91</a>  
+<a name="92" href="#92">92</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="93" href="#93">93</a>  <em class="jxr_javadoccomment">     * The ConnectionManager that spawns and manages service connections.</em>
+<a name="94" href="#94">94</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="95" href="#95">95</a>      <strong class="jxr_keyword">private</strong> <a href="../../../../org/apache/james/socket/JamesConnectionManager.html">JamesConnectionManager</a> connectionManager;
+<a name="96" href="#96">96</a>  
+<a name="97" href="#97">97</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="98" href="#98">98</a>  <em class="jxr_javadoccomment">     * The name of the thread group to be used by this service for </em>
+<a name="99" href="#99">99</a>  <em class="jxr_javadoccomment">     * generating connections</em>
+<a name="100" href="#100">100</a> <em class="jxr_javadoccomment">     */</em>
+<a name="101" href="#101">101</a>     <strong class="jxr_keyword">protected</strong> String threadGroup;
+<a name="102" href="#102">102</a> 
+<a name="103" href="#103">103</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="104" href="#104">104</a> <em class="jxr_javadoccomment">     * The thread pool used by this service that holds the threads</em>
+<a name="105" href="#105">105</a> <em class="jxr_javadoccomment">     * that service the client connections.</em>
+<a name="106" href="#106">106</a> <em class="jxr_javadoccomment">     */</em>
+<a name="107" href="#107">107</a>     <strong class="jxr_keyword">protected</strong> ThreadPool threadPool = <strong class="jxr_keyword">null</strong>;
+<a name="108" href="#108">108</a> 
+<a name="109" href="#109">109</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="110" href="#110">110</a> <em class="jxr_javadoccomment">     * The server socket type used to generate connections for this server.</em>
+<a name="111" href="#111">111</a> <em class="jxr_javadoccomment">     */</em>
+<a name="112" href="#112">112</a>     <strong class="jxr_keyword">protected</strong> String serverSocketType = <span class="jxr_string">"plain"</span>;
+<a name="113" href="#113">113</a> 
+<a name="114" href="#114">114</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="115" href="#115">115</a> <em class="jxr_javadoccomment">     * The port on which this service will be made available.</em>
+<a name="116" href="#116">116</a> <em class="jxr_javadoccomment">     */</em>
+<a name="117" href="#117">117</a>     <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">int</strong> port = -1;
+<a name="118" href="#118">118</a> 
+<a name="119" href="#119">119</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="120" href="#120">120</a> <em class="jxr_javadoccomment">     * Network interface to which the service will bind.  If not set,</em>
+<a name="121" href="#121">121</a> <em class="jxr_javadoccomment">     * the server binds to all available interfaces.</em>
+<a name="122" href="#122">122</a> <em class="jxr_javadoccomment">     */</em>
+<a name="123" href="#123">123</a>     <strong class="jxr_keyword">protected</strong> InetAddress bindTo = <strong class="jxr_keyword">null</strong>;
+<a name="124" href="#124">124</a> 
+<a name="125" href="#125">125</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="126" href="#126">126</a> <em class="jxr_javadoccomment">     * The server socket associated with this service</em>
+<a name="127" href="#127">127</a> <em class="jxr_javadoccomment">     */</em>
+<a name="128" href="#128">128</a>     <strong class="jxr_keyword">protected</strong> ServerSocket serverSocket;
+<a name="129" href="#129">129</a> 
+<a name="130" href="#130">130</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="131" href="#131">131</a> <em class="jxr_javadoccomment">     * The name of the connection used by this service.  We need to</em>
+<a name="132" href="#132">132</a> <em class="jxr_javadoccomment">     * track this so we can tell the ConnectionManager which service</em>
+<a name="133" href="#133">133</a> <em class="jxr_javadoccomment">     * to disconnect upon shutdown.</em>
+<a name="134" href="#134">134</a> <em class="jxr_javadoccomment">     */</em>
+<a name="135" href="#135">135</a>     <strong class="jxr_keyword">protected</strong> String connectionName;
+<a name="136" href="#136">136</a> 
+<a name="137" href="#137">137</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="138" href="#138">138</a> <em class="jxr_javadoccomment">     * The maximum number of connections allowed for this service.</em>
+<a name="139" href="#139">139</a> <em class="jxr_javadoccomment">     */</em>
+<a name="140" href="#140">140</a>     <strong class="jxr_keyword">protected</strong> Integer connectionLimit;
+<a name="141" href="#141">141</a> 
+<a name="142" href="#142">142</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="143" href="#143">143</a> <em class="jxr_javadoccomment">     * The connection idle timeout.  Used primarily to prevent server</em>
+<a name="144" href="#144">144</a> <em class="jxr_javadoccomment">     * problems from hanging a connection.</em>
+<a name="145" href="#145">145</a> <em class="jxr_javadoccomment">     */</em>
+<a name="146" href="#146">146</a>     <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">int</strong> timeout;
+<a name="147" href="#147">147</a> 
+<a name="148" href="#148">148</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="149" href="#149">149</a> <em class="jxr_javadoccomment">     * The connection backlog.</em>
+<a name="150" href="#150">150</a> <em class="jxr_javadoccomment">     */</em>
+<a name="151" href="#151">151</a>     <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">int</strong> backlog;
+<a name="152" href="#152">152</a> 
+<a name="153" href="#153">153</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="154" href="#154">154</a> <em class="jxr_javadoccomment">     * The hello name for the service.</em>
+<a name="155" href="#155">155</a> <em class="jxr_javadoccomment">     */</em>
+<a name="156" href="#156">156</a>     <strong class="jxr_keyword">protected</strong> String helloName;
+<a name="157" href="#157">157</a> 
+<a name="158" href="#158">158</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="159" href="#159">159</a> <em class="jxr_javadoccomment">     * The component manager used by this service.</em>
+<a name="160" href="#160">160</a> <em class="jxr_javadoccomment">     */</em>
+<a name="161" href="#161">161</a>     <strong class="jxr_keyword">private</strong> ServiceManager componentManager;
+<a name="162" href="#162">162</a> 
+<a name="163" href="#163">163</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="164" href="#164">164</a> <em class="jxr_javadoccomment">     * Whether this service is enabled.</em>
+<a name="165" href="#165">165</a> <em class="jxr_javadoccomment">     */</em>
+<a name="166" href="#166">166</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">volatile</strong> <strong class="jxr_keyword">boolean</strong> enabled;
+<a name="167" href="#167">167</a> 
+<a name="168" href="#168">168</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="169" href="#169">169</a> <em class="jxr_javadoccomment">     * Flag holding the disposed state of the component.</em>
+<a name="170" href="#170">170</a> <em class="jxr_javadoccomment">     */</em>
+<a name="171" href="#171">171</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> m_disposed = false;
 <a name="172" href="#172">172</a> 
-<a name="173" href="#173">173</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="174" href="#174">174</a> <em class="jxr_javadoccomment">     * The pool used to provide Protocol Handler objects</em>
-<a name="175" href="#175">175</a> <em class="jxr_javadoccomment">     */</em>
-<a name="176" href="#176">176</a>     <strong class="jxr_keyword">protected</strong> Pool theHandlerPool = <strong class="jxr_keyword">null</strong>;
-<a name="177" href="#177">177</a> 
-<a name="178" href="#178">178</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="179" href="#179">179</a> <em class="jxr_javadoccomment">     * The factory used to generate Watchdog objects</em>
-<a name="180" href="#180">180</a> <em class="jxr_javadoccomment">     */</em>
-<a name="181" href="#181">181</a>     <strong class="jxr_keyword">protected</strong> <a href="../../../../org/apache/james/util/watchdog/WatchdogFactory.html">WatchdogFactory</a> theWatchdogFactory = <strong class="jxr_keyword">null</strong>;
-<a name="182" href="#182">182</a>     
-<a name="183" href="#183">183</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="184" href="#184">184</a> <em class="jxr_javadoccomment">     * The DNSService</em>
-<a name="185" href="#185">185</a> <em class="jxr_javadoccomment">     */</em>
-<a name="186" href="#186">186</a>     <strong class="jxr_keyword">private</strong> <a href="../../../../org/apache/james/api/dnsservice/DNSService.html">DNSService</a> dnsServer = <strong class="jxr_keyword">null</strong>;
-<a name="187" href="#187">187</a>     
-<a name="188" href="#188">188</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> connPerIPConfigured = false;
-<a name="189" href="#189">189</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">int</strong> connPerIP = 0;
-<a name="190" href="#190">190</a> 
-<a name="191" href="#191">191</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="192" href="#192">192</a> <em class="jxr_javadoccomment">     * If not null, it will be used to dump the tcp commands for debugging purpose</em>
+<a name="173" href="#173">173</a> 
+<a name="174" href="#174">174</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="175" href="#175">175</a> <em class="jxr_javadoccomment">     * The pool used to provide Protocol Handler objects</em>
+<a name="176" href="#176">176</a> <em class="jxr_javadoccomment">     */</em>
+<a name="177" href="#177">177</a>     <strong class="jxr_keyword">protected</strong> Pool theHandlerPool = <strong class="jxr_keyword">null</strong>;
+<a name="178" href="#178">178</a> 
+<a name="179" href="#179">179</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="180" href="#180">180</a> <em class="jxr_javadoccomment">     * The factory used to generate Watchdog objects</em>
+<a name="181" href="#181">181</a> <em class="jxr_javadoccomment">     */</em>
+<a name="182" href="#182">182</a>     <strong class="jxr_keyword">protected</strong> <a href="../../../../org/apache/james/util/watchdog/WatchdogFactory.html">WatchdogFactory</a> theWatchdogFactory = <strong class="jxr_keyword">null</strong>;
+<a name="183" href="#183">183</a>     
+<a name="184" href="#184">184</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="185" href="#185">185</a> <em class="jxr_javadoccomment">     * The DNSService</em>
+<a name="186" href="#186">186</a> <em class="jxr_javadoccomment">     */</em>
+<a name="187" href="#187">187</a>     <strong class="jxr_keyword">private</strong> <a href="../../../../org/apache/james/api/dnsservice/DNSService.html">DNSService</a> dnsServer = <strong class="jxr_keyword">null</strong>;
+<a name="188" href="#188">188</a>     
+<a name="189" href="#189">189</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="190" href="#190">190</a> <em class="jxr_javadoccomment">     * Counts the number of handler instances created.</em>
+<a name="191" href="#191">191</a> <em class="jxr_javadoccomment">     * This allows a unique identity to be assigned to each for</em>
+<a name="192" href="#192">192</a> <em class="jxr_javadoccomment">     * context sensitive logging.</em>
 <a name="193" href="#193">193</a> <em class="jxr_javadoccomment">     */</em>
-<a name="194" href="#194">194</a>     <strong class="jxr_keyword">private</strong> String streamDumpDir = <strong class="jxr_keyword">null</strong>;
-<a name="195" href="#195">195</a> 
-<a name="196" href="#196">196</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setConnectionManager(<a href="../../../../org/apache/james/socket/JamesConnectionManager.html">JamesConnectionManager</a> connectionManager) {
-<a name="197" href="#197">197</a>         <strong class="jxr_keyword">this</strong>.connectionManager = connectionManager;
-<a name="198" href="#198">198</a>     }
-<a name="199" href="#199">199</a> 
-<a name="200" href="#200">200</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="201" href="#201">201</a> <em class="jxr_javadoccomment">     * @see org.apache.avalon.framework.service.Serviceable#service(ServiceManager)</em>
-<a name="202" href="#202">202</a> <em class="jxr_javadoccomment">     */</em>
-<a name="203" href="#203">203</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> service(ServiceManager comp) <strong class="jxr_keyword">throws</strong> ServiceException {
-<a name="204" href="#204">204</a>         <strong class="jxr_keyword">super</strong>.service( comp );
-<a name="205" href="#205">205</a>         componentManager = comp;
-<a name="206" href="#206">206</a>         <a href="../../../../org/apache/james/socket/JamesConnectionManager.html">JamesConnectionManager</a> connectionManager =
-<a name="207" href="#207">207</a>             (<a href="../../../../org/apache/james/socket/JamesConnectionManager.html">JamesConnectionManager</a>)componentManager.lookup(JamesConnectionManager.ROLE);
-<a name="208" href="#208">208</a>         setConnectionManager(connectionManager);
-<a name="209" href="#209">209</a>         dnsServer = (DNSService) comp.lookup(DNSService.ROLE);
-<a name="210" href="#210">210</a>     }
-<a name="211" href="#211">211</a> 
-<a name="212" href="#212">212</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="213" href="#213">213</a> <em class="jxr_javadoccomment">     * @see org.apache.avalon.framework.configuration.Configurable#configure(Configuration)</em>
-<a name="214" href="#214">214</a> <em class="jxr_javadoccomment">     */</em>
-<a name="215" href="#215">215</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> configure(Configuration conf) <strong class="jxr_keyword">throws</strong> ConfigurationException {
-<a name="216" href="#216">216</a>         enabled = conf.getAttributeAsBoolean(<span class="jxr_string">"enabled"</span>, <strong class="jxr_keyword">true</strong>);
-<a name="217" href="#217">217</a>         <strong class="jxr_keyword">final</strong> Logger logger = getLogger();
-<a name="218" href="#218">218</a>         <strong class="jxr_keyword">if</strong> (!enabled) {
-<a name="219" href="#219">219</a>           logger.info(getServiceType() + <span class="jxr_string">" disabled by configuration"</span>);
-<a name="220" href="#220">220</a>           <strong class="jxr_keyword">return</strong>;
-<a name="221" href="#221">221</a>         }
-<a name="222" href="#222">222</a> 
-<a name="223" href="#223">223</a>         Configuration handlerConfiguration = conf.getChild(<span class="jxr_string">"handler"</span>);
-<a name="224" href="#224">224</a> 
-<a name="225" href="#225">225</a>         <em class="jxr_comment">// Send the handler subconfiguration to the super class.  This </em>
-<a name="226" href="#226">226</a>         <em class="jxr_comment">// ensures that the handler config is passed to the handlers.</em>
-<a name="227" href="#227">227</a>         <em class="jxr_comment">//</em>
-<a name="228" href="#228">228</a>         <em class="jxr_comment">// TODO: This should be rationalized.  The handler element of the</em>
-<a name="229" href="#229">229</a>         <em class="jxr_comment">//       server configuration doesn't really make a whole lot of </em>
-<a name="230" href="#230">230</a>         <em class="jxr_comment">//       sense.  We should modify the config to get rid of it.</em>
-<a name="231" href="#231">231</a>         <em class="jxr_comment">//       Keeping it for now to maintain backwards compatibility.</em>
-<a name="232" href="#232">232</a>         <strong class="jxr_keyword">super</strong>.configure(handlerConfiguration);
-<a name="233" href="#233">233</a>         
-<a name="234" href="#234">234</a>         
-<a name="235" href="#235">235</a>         <strong class="jxr_keyword">boolean</strong> streamdump=handlerConfiguration.getChild(<span class="jxr_string">"streamdump"</span>).getAttributeAsBoolean(<span class="jxr_string">"enabled"</span>, false);
-<a name="236" href="#236">236</a>         String streamdumpDir=streamdump ? handlerConfiguration.getChild(<span class="jxr_string">"streamdump"</span>).getAttribute(<span class="jxr_string">"directory"</span>, <strong class="jxr_keyword">null</strong>) : <strong class="jxr_keyword">null</strong>;
-<a name="237" href="#237">237</a>         setStreamDumpDir(streamdumpDir);
-<a name="238" href="#238">238</a> 
-<a name="239" href="#239">239</a> 
-<a name="240" href="#240">240</a>         port = conf.getChild(<span class="jxr_string">"port"</span>).getValueAsInteger(getDefaultPort());
-<a name="241" href="#241">241</a> 
-<a name="242" href="#242">242</a>         Configuration serverSocketTypeConf = conf.getChild(<span class="jxr_string">"serverSocketType"</span>, false);
-<a name="243" href="#243">243</a>         String confSocketType = <strong class="jxr_keyword">null</strong>;
-<a name="244" href="#244">244</a>         <strong class="jxr_keyword">if</strong> (serverSocketTypeConf != <strong class="jxr_keyword">null</strong> ) {
-<a name="245" href="#245">245</a>             confSocketType = serverSocketTypeConf.getValue();
-<a name="246" href="#246">246</a>         }
+<a name="194" href="#194">194</a>     <strong class="jxr_keyword">private</strong> AtomicLong handlerCount = <strong class="jxr_keyword">new</strong> AtomicLong(0);
+<a name="195" href="#195">195</a>     
+<a name="196" href="#196">196</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> connPerIPConfigured = false;
+<a name="197" href="#197">197</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">int</strong> connPerIP = 0;
+<a name="198" href="#198">198</a> 
+<a name="199" href="#199">199</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="200" href="#200">200</a> <em class="jxr_javadoccomment">     * If not null, it will be used to dump the tcp commands for debugging purpose</em>
+<a name="201" href="#201">201</a> <em class="jxr_javadoccomment">     */</em>
+<a name="202" href="#202">202</a>     <strong class="jxr_keyword">private</strong> String streamDumpDir = <strong class="jxr_keyword">null</strong>;
+<a name="203" href="#203">203</a> 
+<a name="204" href="#204">204</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setConnectionManager(<a href="../../../../org/apache/james/socket/JamesConnectionManager.html">JamesConnectionManager</a> connectionManager) {
+<a name="205" href="#205">205</a>         <strong class="jxr_keyword">this</strong>.connectionManager = connectionManager;
+<a name="206" href="#206">206</a>     }
+<a name="207" href="#207">207</a> 
+<a name="208" href="#208">208</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="209" href="#209">209</a> <em class="jxr_javadoccomment">     * @see org.apache.avalon.framework.service.Serviceable#service(ServiceManager)</em>
+<a name="210" href="#210">210</a> <em class="jxr_javadoccomment">     */</em>
+<a name="211" href="#211">211</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> service(ServiceManager comp) <strong class="jxr_keyword">throws</strong> ServiceException {
+<a name="212" href="#212">212</a>         <strong class="jxr_keyword">super</strong>.service( comp );
+<a name="213" href="#213">213</a>         componentManager = comp;
+<a name="214" href="#214">214</a>         <a href="../../../../org/apache/james/socket/JamesConnectionManager.html">JamesConnectionManager</a> connectionManager =
+<a name="215" href="#215">215</a>             (<a href="../../../../org/apache/james/socket/JamesConnectionManager.html">JamesConnectionManager</a>)componentManager.lookup(JamesConnectionManager.ROLE);
+<a name="216" href="#216">216</a>         setConnectionManager(connectionManager);
+<a name="217" href="#217">217</a>         dnsServer = (DNSService) comp.lookup(DNSService.ROLE);
+<a name="218" href="#218">218</a>     }
+<a name="219" href="#219">219</a> 
+<a name="220" href="#220">220</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="221" href="#221">221</a> <em class="jxr_javadoccomment">     * @see org.apache.avalon.framework.configuration.Configurable#configure(Configuration)</em>
+<a name="222" href="#222">222</a> <em class="jxr_javadoccomment">     */</em>
+<a name="223" href="#223">223</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> configure(Configuration conf) <strong class="jxr_keyword">throws</strong> ConfigurationException {
+<a name="224" href="#224">224</a>         enabled = conf.getAttributeAsBoolean(<span class="jxr_string">"enabled"</span>, <strong class="jxr_keyword">true</strong>);
+<a name="225" href="#225">225</a>         <strong class="jxr_keyword">final</strong> Logger logger = getLogger();
+<a name="226" href="#226">226</a>         <strong class="jxr_keyword">if</strong> (!enabled) {
+<a name="227" href="#227">227</a>           logger.info(getServiceType() + <span class="jxr_string">" disabled by configuration"</span>);
+<a name="228" href="#228">228</a>           <strong class="jxr_keyword">return</strong>;
+<a name="229" href="#229">229</a>         }
+<a name="230" href="#230">230</a> 
+<a name="231" href="#231">231</a>         Configuration handlerConfiguration = conf.getChild(<span class="jxr_string">"handler"</span>);
+<a name="232" href="#232">232</a> 
+<a name="233" href="#233">233</a>         <em class="jxr_comment">// Send the handler subconfiguration to the super class.  This </em>
+<a name="234" href="#234">234</a>         <em class="jxr_comment">// ensures that the handler config is passed to the handlers.</em>
+<a name="235" href="#235">235</a>         <em class="jxr_comment">//</em>
+<a name="236" href="#236">236</a>         <em class="jxr_comment">// TODO: This should be rationalized.  The handler element of the</em>
+<a name="237" href="#237">237</a>         <em class="jxr_comment">//       server configuration doesn't really make a whole lot of </em>
+<a name="238" href="#238">238</a>         <em class="jxr_comment">//       sense.  We should modify the config to get rid of it.</em>
+<a name="239" href="#239">239</a>         <em class="jxr_comment">//       Keeping it for now to maintain backwards compatibility.</em>
+<a name="240" href="#240">240</a>         <strong class="jxr_keyword">super</strong>.configure(handlerConfiguration);
+<a name="241" href="#241">241</a>         
+<a name="242" href="#242">242</a>         
+<a name="243" href="#243">243</a>         <strong class="jxr_keyword">boolean</strong> streamdump=handlerConfiguration.getChild(<span class="jxr_string">"streamdump"</span>).getAttributeAsBoolean(<span class="jxr_string">"enabled"</span>, false);
+<a name="244" href="#244">244</a>         String streamdumpDir=streamdump ? handlerConfiguration.getChild(<span class="jxr_string">"streamdump"</span>).getAttribute(<span class="jxr_string">"directory"</span>, <strong class="jxr_keyword">null</strong>) : <strong class="jxr_keyword">null</strong>;
+<a name="245" href="#245">245</a>         setStreamDumpDir(streamdumpDir);
+<a name="246" href="#246">246</a> 
 <a name="247" href="#247">247</a> 
-<a name="248" href="#248">248</a>         <strong class="jxr_keyword">if</strong> (confSocketType == <strong class="jxr_keyword">null</strong>) {
-<a name="249" href="#249">249</a>             <em class="jxr_comment">// Only load the useTLS parameter if a specific socket type has not</em>
-<a name="250" href="#250">250</a>             <em class="jxr_comment">// been specified.  This maintains backwards compatibility while</em>
-<a name="251" href="#251">251</a>             <em class="jxr_comment">// allowing us to have more complex (i.e. multiple SSL configuration)</em>
-<a name="252" href="#252">252</a>             <em class="jxr_comment">// deployments</em>
-<a name="253" href="#253">253</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong> useTLS = conf.getChild(<span class="jxr_string">"useTLS"</span>).getValueAsBoolean(isDefaultTLSEnabled());
-<a name="254" href="#254">254</a>             <strong class="jxr_keyword">if</strong> (useTLS) {
-<a name="255" href="#255">255</a>                 serverSocketType = <span class="jxr_string">"ssl"</span>;
-<a name="256" href="#256">256</a>                 loadJCEProviders(conf, logger);
-<a name="257" href="#257">257</a>             }
-<a name="258" href="#258">258</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="259" href="#259">259</a>             serverSocketType = confSocketType;
-<a name="260" href="#260">260</a>         }
-<a name="261" href="#261">261</a> 
-<a name="262" href="#262">262</a>         StringBuffer infoBuffer;
-<a name="263" href="#263">263</a>         threadGroup = conf.getChild(<span class="jxr_string">"threadGroup"</span>).getValue(<strong class="jxr_keyword">null</strong>);
-<a name="264" href="#264">264</a>         <strong class="jxr_keyword">if</strong> (threadGroup != <strong class="jxr_keyword">null</strong>) {
-<a name="265" href="#265">265</a>             infoBuffer =
-<a name="266" href="#266">266</a>                 <strong class="jxr_keyword">new</strong> StringBuffer(64)
-<a name="267" href="#267">267</a>                         .append(getServiceType())
-<a name="268" href="#268">268</a>                         .append(<span class="jxr_string">" uses thread group: "</span>)
-<a name="269" href="#269">269</a>                         .append(threadGroup);
-<a name="270" href="#270">270</a>             logger.info(infoBuffer.toString());
-<a name="271" href="#271">271</a>         }
-<a name="272" href="#272">272</a>         <strong class="jxr_keyword">else</strong> {
-<a name="273" href="#273">273</a>             logger.info(getServiceType() + <span class="jxr_string">" uses default thread group."</span>);
-<a name="274" href="#274">274</a>         }
-<a name="275" href="#275">275</a> 
-<a name="276" href="#276">276</a>         <strong class="jxr_keyword">try</strong> {
-<a name="277" href="#277">277</a>             <strong class="jxr_keyword">final</strong> String bindAddress = conf.getChild(<span class="jxr_string">"bind"</span>).getValue(<strong class="jxr_keyword">null</strong>);
-<a name="278" href="#278">278</a>             <strong class="jxr_keyword">if</strong>( <strong class="jxr_keyword">null</strong> != bindAddress ) {
-<a name="279" href="#279">279</a>                 bindTo = InetAddress.getByName(bindAddress);
-<a name="280" href="#280">280</a>                 infoBuffer =
-<a name="281" href="#281">281</a>                     <strong class="jxr_keyword">new</strong> StringBuffer(64)
-<a name="282" href="#282">282</a>                             .append(getServiceType())
-<a name="283" href="#283">283</a>                             .append(<span class="jxr_string">" bound to: "</span>)
-<a name="284" href="#284">284</a>                             .append(bindTo);
-<a name="285" href="#285">285</a>                 logger.info(infoBuffer.toString());
-<a name="286" href="#286">286</a>             }
-<a name="287" href="#287">287</a>         }
-<a name="288" href="#288">288</a>         <strong class="jxr_keyword">catch</strong>( <strong class="jxr_keyword">final</strong> UnknownHostException unhe ) {
-<a name="289" href="#289">289</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> ConfigurationException( <span class="jxr_string">"Malformed bind parameter in configuration of service "</span> + getServiceType(), unhe );
-<a name="290" href="#290">290</a>         }
-<a name="291" href="#291">291</a> 
-<a name="292" href="#292">292</a>         configureHelloName(handlerConfiguration);
-<a name="293" href="#293">293</a> 
-<a name="294" href="#294">294</a>         timeout = handlerConfiguration.getChild(TIMEOUT_NAME).getValueAsInteger(DEFAULT_TIMEOUT);
-<a name="295" href="#295">295</a> 
-<a name="296" href="#296">296</a>         infoBuffer =
-<a name="297" href="#297">297</a>             <strong class="jxr_keyword">new</strong> StringBuffer(64)
-<a name="298" href="#298">298</a>                     .append(getServiceType())
-<a name="299" href="#299">299</a>                     .append(<span class="jxr_string">" handler connection timeout is: "</span>)
-<a name="300" href="#300">300</a>                     .append(timeout);
-<a name="301" href="#301">301</a>         logger.info(infoBuffer.toString());
-<a name="302" href="#302">302</a> 
-<a name="303" href="#303">303</a>         backlog = conf.getChild(BACKLOG_NAME).getValueAsInteger(DEFAULT_BACKLOG);
-<a name="304" href="#304">304</a> 
-<a name="305" href="#305">305</a>         infoBuffer =
-<a name="306" href="#306">306</a>                     <strong class="jxr_keyword">new</strong> StringBuffer(64)
-<a name="307" href="#307">307</a>                     .append(getServiceType())
-<a name="308" href="#308">308</a>                     .append(<span class="jxr_string">" connection backlog is: "</span>)
-<a name="309" href="#309">309</a>                     .append(backlog);
-<a name="310" href="#310">310</a>         logger.info(infoBuffer.toString());
-<a name="311" href="#311">311</a> 
-<a name="312" href="#312">312</a>         String connectionLimitString = conf.getChild(<span class="jxr_string">"connectionLimit"</span>).getValue(<strong class="jxr_keyword">null</strong>);
-<a name="313" href="#313">313</a>         <strong class="jxr_keyword">if</strong> (connectionLimitString != <strong class="jxr_keyword">null</strong>) {
-<a name="314" href="#314">314</a>             <strong class="jxr_keyword">try</strong> {
-<a name="315" href="#315">315</a>                 connectionLimit = <strong class="jxr_keyword">new</strong> Integer(connectionLimitString);
-<a name="316" href="#316">316</a>             } <strong class="jxr_keyword">catch</strong> (NumberFormatException nfe) {
-<a name="317" href="#317">317</a>                 logger.error(<span class="jxr_string">"Connection limit value is not properly formatted."</span>, nfe);
-<a name="318" href="#318">318</a>             }
-<a name="319" href="#319">319</a>             <strong class="jxr_keyword">if</strong> (connectionLimit.intValue() &lt; 0) {
-<a name="320" href="#320">320</a>                 logger.error(<span class="jxr_string">"Connection limit value cannot be less than zero."</span>);
-<a name="321" href="#321">321</a>                 <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> ConfigurationException(<span class="jxr_string">"Connection limit value cannot be less than zero."</span>);
-<a name="322" href="#322">322</a>             }
-<a name="323" href="#323">323</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="324" href="#324">324</a>             connectionLimit = <strong class="jxr_keyword">new</strong> Integer(connectionManager.getMaximumNumberOfOpenConnections());
-<a name="325" href="#325">325</a>         }
-<a name="326" href="#326">326</a>         infoBuffer = <strong class="jxr_keyword">new</strong> StringBuffer(128)
-<a name="327" href="#327">327</a>             .append(getServiceType())
-<a name="328" href="#328">328</a>             .append(<span class="jxr_string">" will allow a maximum of "</span>)
-<a name="329" href="#329">329</a>             .append(connectionLimit.intValue())
-<a name="330" href="#330">330</a>             .append(<span class="jxr_string">" connections."</span>);
-<a name="331" href="#331">331</a>         logger.info(infoBuffer.toString());
-<a name="332" href="#332">332</a>         
-<a name="333" href="#333">333</a>         String connectionLimitPerIP = conf.getChild(<span class="jxr_string">"connectionLimitPerIP"</span>).getValue(<strong class="jxr_keyword">null</strong>);
-<a name="334" href="#334">334</a>         <strong class="jxr_keyword">if</strong> (connectionLimitPerIP != <strong class="jxr_keyword">null</strong>) {
-<a name="335" href="#335">335</a>             <strong class="jxr_keyword">try</strong> {
-<a name="336" href="#336">336</a>             connPerIP = <strong class="jxr_keyword">new</strong> Integer(connectionLimitPerIP).intValue();
-<a name="337" href="#337">337</a>             connPerIPConfigured = <strong class="jxr_keyword">true</strong>;
-<a name="338" href="#338">338</a>             } <strong class="jxr_keyword">catch</strong> (NumberFormatException nfe) {
-<a name="339" href="#339">339</a>                 logger.error(<span class="jxr_string">"Connection limit per IP value is not properly formatted."</span>, nfe);
-<a name="340" href="#340">340</a>             }
-<a name="341" href="#341">341</a>             <strong class="jxr_keyword">if</strong> (connPerIP &lt; 0) {
-<a name="342" href="#342">342</a>                 logger.error(<span class="jxr_string">"Connection limit per IP value cannot be less than zero."</span>);
-<a name="343" href="#343">343</a>                 <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> ConfigurationException(<span class="jxr_string">"Connection limit value cannot be less than zero."</span>);
-<a name="344" href="#344">344</a>             }
-<a name="345" href="#345">345</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="346" href="#346">346</a>             connPerIP = connectionManager.getMaximumNumberOfOpenConnectionsPerIP();
-<a name="347" href="#347">347</a>         }
-<a name="348" href="#348">348</a>         infoBuffer = <strong class="jxr_keyword">new</strong> StringBuffer(128)
-<a name="349" href="#349">349</a>             .append(getServiceType())
-<a name="350" href="#350">350</a>             .append(<span class="jxr_string">" will allow a maximum of "</span>)
-<a name="351" href="#351">351</a>             .append(connPerIP)
-<a name="352" href="#352">352</a>             .append(<span class="jxr_string">" per IP connections for "</span> +getServiceType());
-<a name="353" href="#353">353</a>         logger.info(infoBuffer.toString());
-<a name="354" href="#354">354</a>         
-<a name="355" href="#355">355</a>     }
-<a name="356" href="#356">356</a> 
-<a name="357" href="#357">357</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> loadJCEProviders(Configuration conf, <strong class="jxr_keyword">final</strong> Logger logger) <strong class="jxr_keyword">throws</strong> ConfigurationException {
-<a name="358" href="#358">358</a>         <strong class="jxr_keyword">final</strong> Configuration [] providerConfiguration = conf.getChildren(<span class="jxr_string">"provider"</span>);
-<a name="359" href="#359">359</a>         <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i &lt; providerConfiguration.length; i++) {
-<a name="360" href="#360">360</a>             <strong class="jxr_keyword">final</strong> String providerName = providerConfiguration[i].getValue();
-<a name="361" href="#361">361</a>             loadProvider(logger, providerName);
-<a name="362" href="#362">362</a>         }
+<a name="248" href="#248">248</a>         port = conf.getChild(<span class="jxr_string">"port"</span>).getValueAsInteger(getDefaultPort());
+<a name="249" href="#249">249</a> 
+<a name="250" href="#250">250</a>         Configuration serverSocketTypeConf = conf.getChild(<span class="jxr_string">"serverSocketType"</span>, false);
+<a name="251" href="#251">251</a>         String confSocketType = <strong class="jxr_keyword">null</strong>;
+<a name="252" href="#252">252</a>         <strong class="jxr_keyword">if</strong> (serverSocketTypeConf != <strong class="jxr_keyword">null</strong> ) {
+<a name="253" href="#253">253</a>             confSocketType = serverSocketTypeConf.getValue();
+<a name="254" href="#254">254</a>         }
+<a name="255" href="#255">255</a> 
+<a name="256" href="#256">256</a>         <strong class="jxr_keyword">if</strong> (confSocketType == <strong class="jxr_keyword">null</strong>) {
+<a name="257" href="#257">257</a>             <em class="jxr_comment">// Only load the useTLS parameter if a specific socket type has not</em>
+<a name="258" href="#258">258</a>             <em class="jxr_comment">// been specified.  This maintains backwards compatibility while</em>
+<a name="259" href="#259">259</a>             <em class="jxr_comment">// allowing us to have more complex (i.e. multiple SSL configuration)</em>
+<a name="260" href="#260">260</a>             <em class="jxr_comment">// deployments</em>
+<a name="261" href="#261">261</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong> useTLS = conf.getChild(<span class="jxr_string">"useTLS"</span>).getValueAsBoolean(isDefaultTLSEnabled());
+<a name="262" href="#262">262</a>             <strong class="jxr_keyword">if</strong> (useTLS) {
+<a name="263" href="#263">263</a>                 serverSocketType = <span class="jxr_string">"ssl"</span>;
+<a name="264" href="#264">264</a>                 loadJCEProviders(conf, logger);
+<a name="265" href="#265">265</a>             }
+<a name="266" href="#266">266</a>         } <strong class="jxr_keyword">else</strong> {
+<a name="267" href="#267">267</a>             serverSocketType = confSocketType;
+<a name="268" href="#268">268</a>         }
+<a name="269" href="#269">269</a> 
+<a name="270" href="#270">270</a>         StringBuffer infoBuffer;
+<a name="271" href="#271">271</a>         threadGroup = conf.getChild(<span class="jxr_string">"threadGroup"</span>).getValue(<strong class="jxr_keyword">null</strong>);
+<a name="272" href="#272">272</a>         <strong class="jxr_keyword">if</strong> (threadGroup != <strong class="jxr_keyword">null</strong>) {
+<a name="273" href="#273">273</a>             infoBuffer =
+<a name="274" href="#274">274</a>                 <strong class="jxr_keyword">new</strong> StringBuffer(64)
+<a name="275" href="#275">275</a>                         .append(getServiceType())
+<a name="276" href="#276">276</a>                         .append(<span class="jxr_string">" uses thread group: "</span>)
+<a name="277" href="#277">277</a>                         .append(threadGroup);
+<a name="278" href="#278">278</a>             logger.info(infoBuffer.toString());
+<a name="279" href="#279">279</a>         }
+<a name="280" href="#280">280</a>         <strong class="jxr_keyword">else</strong> {
+<a name="281" href="#281">281</a>             logger.info(getServiceType() + <span class="jxr_string">" uses default thread group."</span>);
+<a name="282" href="#282">282</a>         }
+<a name="283" href="#283">283</a> 
+<a name="284" href="#284">284</a>         <strong class="jxr_keyword">try</strong> {
+<a name="285" href="#285">285</a>             <strong class="jxr_keyword">final</strong> String bindAddress = conf.getChild(<span class="jxr_string">"bind"</span>).getValue(<strong class="jxr_keyword">null</strong>);
+<a name="286" href="#286">286</a>             <strong class="jxr_keyword">if</strong>( <strong class="jxr_keyword">null</strong> != bindAddress ) {
+<a name="287" href="#287">287</a>                 bindTo = InetAddress.getByName(bindAddress);
+<a name="288" href="#288">288</a>                 infoBuffer =
+<a name="289" href="#289">289</a>                     <strong class="jxr_keyword">new</strong> StringBuffer(64)
+<a name="290" href="#290">290</a>                             .append(getServiceType())
+<a name="291" href="#291">291</a>                             .append(<span class="jxr_string">" bound to: "</span>)
+<a name="292" href="#292">292</a>                             .append(bindTo);
+<a name="293" href="#293">293</a>                 logger.info(infoBuffer.toString());
+<a name="294" href="#294">294</a>             }
+<a name="295" href="#295">295</a>         }
+<a name="296" href="#296">296</a>         <strong class="jxr_keyword">catch</strong>( <strong class="jxr_keyword">final</strong> UnknownHostException unhe ) {
+<a name="297" href="#297">297</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> ConfigurationException( <span class="jxr_string">"Malformed bind parameter in configuration of service "</span> + getServiceType(), unhe );
+<a name="298" href="#298">298</a>         }
+<a name="299" href="#299">299</a> 
+<a name="300" href="#300">300</a>         configureHelloName(handlerConfiguration);
+<a name="301" href="#301">301</a> 
+<a name="302" href="#302">302</a>         timeout = handlerConfiguration.getChild(TIMEOUT_NAME).getValueAsInteger(DEFAULT_TIMEOUT);
+<a name="303" href="#303">303</a> 
+<a name="304" href="#304">304</a>         infoBuffer =
+<a name="305" href="#305">305</a>             <strong class="jxr_keyword">new</strong> StringBuffer(64)
+<a name="306" href="#306">306</a>                     .append(getServiceType())
+<a name="307" href="#307">307</a>                     .append(<span class="jxr_string">" handler connection timeout is: "</span>)
+<a name="308" href="#308">308</a>                     .append(timeout);
+<a name="309" href="#309">309</a>         logger.info(infoBuffer.toString());
+<a name="310" href="#310">310</a> 
+<a name="311" href="#311">311</a>         backlog = conf.getChild(BACKLOG_NAME).getValueAsInteger(DEFAULT_BACKLOG);
+<a name="312" href="#312">312</a> 
+<a name="313" href="#313">313</a>         infoBuffer =
+<a name="314" href="#314">314</a>                     <strong class="jxr_keyword">new</strong> StringBuffer(64)
+<a name="315" href="#315">315</a>                     .append(getServiceType())
+<a name="316" href="#316">316</a>                     .append(<span class="jxr_string">" connection backlog is: "</span>)
+<a name="317" href="#317">317</a>                     .append(backlog);
+<a name="318" href="#318">318</a>         logger.info(infoBuffer.toString());
+<a name="319" href="#319">319</a> 
+<a name="320" href="#320">320</a>         String connectionLimitString = conf.getChild(<span class="jxr_string">"connectionLimit"</span>).getValue(<strong class="jxr_keyword">null</strong>);
+<a name="321" href="#321">321</a>         <strong class="jxr_keyword">if</strong> (connectionLimitString != <strong class="jxr_keyword">null</strong>) {
+<a name="322" href="#322">322</a>             <strong class="jxr_keyword">try</strong> {
+<a name="323" href="#323">323</a>                 connectionLimit = <strong class="jxr_keyword">new</strong> Integer(connectionLimitString);
+<a name="324" href="#324">324</a>             } <strong class="jxr_keyword">catch</strong> (NumberFormatException nfe) {
+<a name="325" href="#325">325</a>                 logger.error(<span class="jxr_string">"Connection limit value is not properly formatted."</span>, nfe);
+<a name="326" href="#326">326</a>             }
+<a name="327" href="#327">327</a>             <strong class="jxr_keyword">if</strong> (connectionLimit.intValue() &lt; 0) {
+<a name="328" href="#328">328</a>                 logger.error(<span class="jxr_string">"Connection limit value cannot be less than zero."</span>);
+<a name="329" href="#329">329</a>                 <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> ConfigurationException(<span class="jxr_string">"Connection limit value cannot be less than zero."</span>);
+<a name="330" href="#330">330</a>             }
+<a name="331" href="#331">331</a>         } <strong class="jxr_keyword">else</strong> {
+<a name="332" href="#332">332</a>             connectionLimit = <strong class="jxr_keyword">new</strong> Integer(connectionManager.getMaximumNumberOfOpenConnections());
+<a name="333" href="#333">333</a>         }
+<a name="334" href="#334">334</a>         infoBuffer = <strong class="jxr_keyword">new</strong> StringBuffer(128)
+<a name="335" href="#335">335</a>             .append(getServiceType())
+<a name="336" href="#336">336</a>             .append(<span class="jxr_string">" will allow a maximum of "</span>)
+<a name="337" href="#337">337</a>             .append(connectionLimit.intValue())
+<a name="338" href="#338">338</a>             .append(<span class="jxr_string">" connections."</span>);
+<a name="339" href="#339">339</a>         logger.info(infoBuffer.toString());
+<a name="340" href="#340">340</a>         
+<a name="341" href="#341">341</a>         String connectionLimitPerIP = conf.getChild(<span class="jxr_string">"connectionLimitPerIP"</span>).getValue(<strong class="jxr_keyword">null</strong>);
+<a name="342" href="#342">342</a>         <strong class="jxr_keyword">if</strong> (connectionLimitPerIP != <strong class="jxr_keyword">null</strong>) {
+<a name="343" href="#343">343</a>             <strong class="jxr_keyword">try</strong> {
+<a name="344" href="#344">344</a>             connPerIP = <strong class="jxr_keyword">new</strong> Integer(connectionLimitPerIP).intValue();
+<a name="345" href="#345">345</a>             connPerIPConfigured = <strong class="jxr_keyword">true</strong>;
+<a name="346" href="#346">346</a>             } <strong class="jxr_keyword">catch</strong> (NumberFormatException nfe) {
+<a name="347" href="#347">347</a>                 logger.error(<span class="jxr_string">"Connection limit per IP value is not properly formatted."</span>, nfe);
+<a name="348" href="#348">348</a>             }
+<a name="349" href="#349">349</a>             <strong class="jxr_keyword">if</strong> (connPerIP &lt; 0) {
+<a name="350" href="#350">350</a>                 logger.error(<span class="jxr_string">"Connection limit per IP value cannot be less than zero."</span>);
+<a name="351" href="#351">351</a>                 <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> ConfigurationException(<span class="jxr_string">"Connection limit value cannot be less than zero."</span>);
+<a name="352" href="#352">352</a>             }
+<a name="353" href="#353">353</a>         } <strong class="jxr_keyword">else</strong> {
+<a name="354" href="#354">354</a>             connPerIP = connectionManager.getMaximumNumberOfOpenConnectionsPerIP();
+<a name="355" href="#355">355</a>         }
+<a name="356" href="#356">356</a>         infoBuffer = <strong class="jxr_keyword">new</strong> StringBuffer(128)
+<a name="357" href="#357">357</a>             .append(getServiceType())
+<a name="358" href="#358">358</a>             .append(<span class="jxr_string">" will allow a maximum of "</span>)
+<a name="359" href="#359">359</a>             .append(connPerIP)
+<a name="360" href="#360">360</a>             .append(<span class="jxr_string">" per IP connections for "</span> +getServiceType());
+<a name="361" href="#361">361</a>         logger.info(infoBuffer.toString());
+<a name="362" href="#362">362</a>         
 <a name="363" href="#363">363</a>     }
 <a name="364" href="#364">364</a> 
-<a name="365" href="#365">365</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> loadProvider(<strong class="jxr_keyword">final</strong> Logger logger, <strong class="jxr_keyword">final</strong> String providerName) {
-<a name="366" href="#366">366</a>         <strong class="jxr_keyword">if</strong> (providerName == <strong class="jxr_keyword">null</strong>) {
-<a name="367" href="#367">367</a>             logger.warn(<span class="jxr_string">"Failed to specify provider. Continuing but JCE provider will not be loaded"</span>);   
-<a name="368" href="#368">368</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="369" href="#369">369</a>             <strong class="jxr_keyword">try</strong> {
-<a name="370" href="#370">370</a>                 logger.debug(<span class="jxr_string">"Trying to load JCE provider '"</span> + providerName + <span class="jxr_string">"'"</span>);
-<a name="371" href="#371">371</a>                 Security.addProvider((Provider) Class.forName(providerName).newInstance());
-<a name="372" href="#372">372</a>                 logger.info(<span class="jxr_string">"Load JCE provider '"</span> + providerName + <span class="jxr_string">"'"</span>);
-<a name="373" href="#373">373</a>             } <strong class="jxr_keyword">catch</strong> (IllegalAccessException e) {
-<a name="374" href="#374">374</a>                 logJCELoadFailure(logger, providerName, e);
-<a name="375" href="#375">375</a>             } <strong class="jxr_keyword">catch</strong> (InstantiationException e) {
-<a name="376" href="#376">376</a>                 logJCELoadFailure(logger, providerName, e);
-<a name="377" href="#377">377</a>             } <strong class="jxr_keyword">catch</strong> (ClassNotFoundException e) {
-<a name="378" href="#378">378</a>                 logJCELoadFailure(logger, providerName, e);
-<a name="379" href="#379">379</a>             } <strong class="jxr_keyword">catch</strong> (RuntimeException e) {
-<a name="380" href="#380">380</a>                 logJCELoadFailure(logger, providerName, e);
-<a name="381" href="#381">381</a>             }
-<a name="382" href="#382">382</a>         }
-<a name="383" href="#383">383</a>     }
-<a name="384" href="#384">384</a> 
-<a name="385" href="#385">385</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> logJCELoadFailure(<strong class="jxr_keyword">final</strong> Logger logger, <strong class="jxr_keyword">final</strong> String providerName, Exception e) {
-<a name="386" href="#386">386</a>         logger.warn(<span class="jxr_string">"Cannot load JCE provider"</span> + providerName);
-<a name="387" href="#387">387</a>         logger.debug(e.getMessage(), e);
-<a name="388" href="#388">388</a>     }
-<a name="389" href="#389">389</a> 
-<a name="390" href="#390">390</a>     <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> setStreamDumpDir(String streamdumpDir) {
-<a name="391" href="#391">391</a>         <strong class="jxr_keyword">this</strong>.streamDumpDir = streamdumpDir;
-<a name="392" href="#392">392</a>     }
-<a name="393" href="#393">393</a> 
-<a name="394" href="#394">394</a>     <strong class="jxr_keyword">protected</strong> String getLocalHostName() {
-<a name="395" href="#395">395</a>         String hostName = <strong class="jxr_keyword">null</strong>;
-<a name="396" href="#396">396</a>         <strong class="jxr_keyword">try</strong> {
-<a name="397" href="#397">397</a>             hostName = dnsServer.getHostName(dnsServer.getLocalHost());
-<a name="398" href="#398">398</a>         } <strong class="jxr_keyword">catch</strong> (UnknownHostException ue) {
-<a name="399" href="#399">399</a>             hostName = <span class="jxr_string">"localhost"</span>;
-<a name="400" href="#400">400</a>         }
-<a name="401" href="#401">401</a>         <strong class="jxr_keyword">return</strong> hostName;
-<a name="402" href="#402">402</a>     }
-<a name="403" href="#403">403</a>     
-<a name="404" href="#404">404</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> configureHelloName(Configuration handlerConfiguration) {
-<a name="405" href="#405">405</a>         StringBuffer infoBuffer;
-<a name="406" href="#406">406</a>         String hostName = <strong class="jxr_keyword">null</strong>;
-<a name="407" href="#407">407</a>         <strong class="jxr_keyword">try</strong> {
-<a name="408" href="#408">408</a>             hostName = dnsServer.getHostName(dnsServer.getLocalHost());
-<a name="409" href="#409">409</a>         } <strong class="jxr_keyword">catch</strong> (UnknownHostException ue) {
-<a name="410" href="#410">410</a>             hostName = <span class="jxr_string">"localhost"</span>;
-<a name="411" href="#411">411</a>         }
-<a name="412" href="#412">412</a> 
-<a name="413" href="#413">413</a>         infoBuffer =
-<a name="414" href="#414">414</a>             <strong class="jxr_keyword">new</strong> StringBuffer(64)
-<a name="415" href="#415">415</a>                     .append(getServiceType())
-<a name="416" href="#416">416</a>                     .append(<span class="jxr_string">" is running on: "</span>)
-<a name="417" href="#417">417</a>                     .append(hostName);
-<a name="418" href="#418">418</a>         getLogger().info(infoBuffer.toString());
-<a name="419" href="#419">419</a> 
-<a name="420" href="#420">420</a>         Configuration helloConf = handlerConfiguration.getChild(HELLO_NAME);
-<a name="421" href="#421">421</a>  
-<a name="422" href="#422">422</a>         <strong class="jxr_keyword">if</strong> (helloConf != <strong class="jxr_keyword">null</strong>) {
-<a name="423" href="#423">423</a>             <strong class="jxr_keyword">boolean</strong> autodetect = helloConf.getAttributeAsBoolean(<span class="jxr_string">"autodetect"</span>, <strong class="jxr_keyword">true</strong>);
-<a name="424" href="#424">424</a>             <strong class="jxr_keyword">if</strong> (autodetect) {
-<a name="425" href="#425">425</a>                 helloName = hostName;
-<a name="426" href="#426">426</a>             } <strong class="jxr_keyword">else</strong> {
-<a name="427" href="#427">427</a>                 <em class="jxr_comment">// Should we use the defaultdomain here ?</em>
-<a name="428" href="#428">428</a>                 helloName = helloConf.getValue(<span class="jxr_string">"localhost"</span>);
-<a name="429" href="#429">429</a>             }
-<a name="430" href="#430">430</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="431" href="#431">431</a>             helloName = <strong class="jxr_keyword">null</strong>;
-<a name="432" href="#432">432</a>         }
-<a name="433" href="#433">433</a>         infoBuffer =
-<a name="434" href="#434">434</a>             <strong class="jxr_keyword">new</strong> StringBuffer(64)
-<a name="435" href="#435">435</a>                     .append(getServiceType())
-<a name="436" href="#436">436</a>                     .append(<span class="jxr_string">" handler hello name is: "</span>)
-<a name="437" href="#437">437</a>                     .append(helloName);
-<a name="438" href="#438">438</a>         getLogger().info(infoBuffer.toString());
-<a name="439" href="#439">439</a>     }
-<a name="440" href="#440">440</a> 
-<a name="441" href="#441">441</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="442" href="#442">442</a> <em class="jxr_javadoccomment">     * @see org.apache.avalon.framework.activity.Initializable#initialize()</em>
-<a name="443" href="#443">443</a> <em class="jxr_javadoccomment">     */</em>
-<a name="444" href="#444">444</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> initialize() <strong class="jxr_keyword">throws</strong> Exception {
-<a name="445" href="#445">445</a>         <strong class="jxr_keyword">if</strong> (!isEnabled()) {
-<a name="446" href="#446">446</a>             getLogger().info(getServiceType() + <span class="jxr_string">" Disabled"</span>);
-<a name="447" href="#447">447</a>             System.out.println(getServiceType() + <span class="jxr_string">" Disabled"</span>);
-<a name="448" href="#448">448</a>             <strong class="jxr_keyword">return</strong>;
-<a name="449" href="#449">449</a>         }
-<a name="450" href="#450">450</a>         getLogger().debug(getServiceType() + <span class="jxr_string">" init..."</span>);
-<a name="451" href="#451">451</a> 
-<a name="452" href="#452">452</a>         <em class="jxr_comment">// keeping these looked up services locally, because they are only needed beyond initialization</em>
-<a name="453" href="#453">453</a>         ThreadManager threadManager = (ThreadManager) componentManager.lookup(ThreadManager.ROLE);
-<a name="454" href="#454">454</a>         SocketManager socketManager = (SocketManager) componentManager.lookup(SocketManager.ROLE);
-<a name="455" href="#455">455</a>         
-<a name="456" href="#456">456</a>         initializeThreadPool(threadManager);
-<a name="457" href="#457">457</a> 
-<a name="458" href="#458">458</a>         initializeServerSocket(socketManager);
+<a name="365" href="#365">365</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> loadJCEProviders(Configuration conf, <strong class="jxr_keyword">final</strong> Logger logger) <strong class="jxr_keyword">throws</strong> ConfigurationException {
+<a name="366" href="#366">366</a>         <strong class="jxr_keyword">final</strong> Configuration [] providerConfiguration = conf.getChildren(<span class="jxr_string">"provider"</span>);
+<a name="367" href="#367">367</a>         <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i &lt; providerConfiguration.length; i++) {
+<a name="368" href="#368">368</a>             <strong class="jxr_keyword">final</strong> String providerName = providerConfiguration[i].getValue();
+<a name="369" href="#369">369</a>             loadProvider(logger, providerName);
+<a name="370" href="#370">370</a>         }
+<a name="371" href="#371">371</a>     }
+<a name="372" href="#372">372</a> 
+<a name="373" href="#373">373</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> loadProvider(<strong class="jxr_keyword">final</strong> Logger logger, <strong class="jxr_keyword">final</strong> String providerName) {
+<a name="374" href="#374">374</a>         <strong class="jxr_keyword">if</strong> (providerName == <strong class="jxr_keyword">null</strong>) {
+<a name="375" href="#375">375</a>             logger.warn(<span class="jxr_string">"Failed to specify provider. Continuing but JCE provider will not be loaded"</span>);   
+<a name="376" href="#376">376</a>         } <strong class="jxr_keyword">else</strong> {
+<a name="377" href="#377">377</a>             <strong class="jxr_keyword">try</strong> {
+<a name="378" href="#378">378</a>                 logger.debug(<span class="jxr_string">"Trying to load JCE provider '"</span> + providerName + <span class="jxr_string">"'"</span>);
+<a name="379" href="#379">379</a>                 Security.addProvider((Provider) Class.forName(providerName).newInstance());
+<a name="380" href="#380">380</a>                 logger.info(<span class="jxr_string">"Load JCE provider '"</span> + providerName + <span class="jxr_string">"'"</span>);
+<a name="381" href="#381">381</a>             } <strong class="jxr_keyword">catch</strong> (IllegalAccessException e) {
+<a name="382" href="#382">382</a>                 logJCELoadFailure(logger, providerName, e);
+<a name="383" href="#383">383</a>             } <strong class="jxr_keyword">catch</strong> (InstantiationException e) {
+<a name="384" href="#384">384</a>                 logJCELoadFailure(logger, providerName, e);
+<a name="385" href="#385">385</a>             } <strong class="jxr_keyword">catch</strong> (ClassNotFoundException e) {
+<a name="386" href="#386">386</a>                 logJCELoadFailure(logger, providerName, e);
+<a name="387" href="#387">387</a>             } <strong class="jxr_keyword">catch</strong> (RuntimeException e) {
+<a name="388" href="#388">388</a>                 logJCELoadFailure(logger, providerName, e);
+<a name="389" href="#389">389</a>             }
+<a name="390" href="#390">390</a>         }
+<a name="391" href="#391">391</a>     }
+<a name="392" href="#392">392</a> 
+<a name="393" href="#393">393</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> logJCELoadFailure(<strong class="jxr_keyword">final</strong> Logger logger, <strong class="jxr_keyword">final</strong> String providerName, Exception e) {
+<a name="394" href="#394">394</a>         logger.warn(<span class="jxr_string">"Cannot load JCE provider"</span> + providerName);
+<a name="395" href="#395">395</a>         logger.debug(e.getMessage(), e);
+<a name="396" href="#396">396</a>     }
+<a name="397" href="#397">397</a> 
+<a name="398" href="#398">398</a>     <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> setStreamDumpDir(String streamdumpDir) {
+<a name="399" href="#399">399</a>         <strong class="jxr_keyword">this</strong>.streamDumpDir = streamdumpDir;
+<a name="400" href="#400">400</a>     }
+<a name="401" href="#401">401</a> 
+<a name="402" href="#402">402</a>     <strong class="jxr_keyword">protected</strong> String getLocalHostName() {
+<a name="403" href="#403">403</a>         String hostName = <strong class="jxr_keyword">null</strong>;
+<a name="404" href="#404">404</a>         <strong class="jxr_keyword">try</strong> {
+<a name="405" href="#405">405</a>             hostName = dnsServer.getHostName(dnsServer.getLocalHost());
+<a name="406" href="#406">406</a>         } <strong class="jxr_keyword">catch</strong> (UnknownHostException ue) {
+<a name="407" href="#407">407</a>             hostName = <span class="jxr_string">"localhost"</span>;
+<a name="408" href="#408">408</a>         }
+<a name="409" href="#409">409</a>         <strong class="jxr_keyword">return</strong> hostName;
+<a name="410" href="#410">410</a>     }
+<a name="411" href="#411">411</a>     
+<a name="412" href="#412">412</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> configureHelloName(Configuration handlerConfiguration) {
+<a name="413" href="#413">413</a>         StringBuffer infoBuffer;
+<a name="414" href="#414">414</a>         String hostName = <strong class="jxr_keyword">null</strong>;
+<a name="415" href="#415">415</a>         <strong class="jxr_keyword">try</strong> {
+<a name="416" href="#416">416</a>             hostName = dnsServer.getHostName(dnsServer.getLocalHost());
+<a name="417" href="#417">417</a>         } <strong class="jxr_keyword">catch</strong> (UnknownHostException ue) {
+<a name="418" href="#418">418</a>             hostName = <span class="jxr_string">"localhost"</span>;
+<a name="419" href="#419">419</a>         }
+<a name="420" href="#420">420</a> 
+<a name="421" href="#421">421</a>         infoBuffer =
+<a name="422" href="#422">422</a>             <strong class="jxr_keyword">new</strong> StringBuffer(64)
+<a name="423" href="#423">423</a>                     .append(getServiceType())
+<a name="424" href="#424">424</a>                     .append(<span class="jxr_string">" is running on: "</span>)
+<a name="425" href="#425">425</a>                     .append(hostName);
+<a name="426" href="#426">426</a>         getLogger().info(infoBuffer.toString());
+<a name="427" href="#427">427</a> 
+<a name="428" href="#428">428</a>         Configuration helloConf = handlerConfiguration.getChild(HELLO_NAME);
+<a name="429" href="#429">429</a>  
+<a name="430" href="#430">430</a>         <strong class="jxr_keyword">if</strong> (helloConf != <strong class="jxr_keyword">null</strong>) {
+<a name="431" href="#431">431</a>             <strong class="jxr_keyword">boolean</strong> autodetect = helloConf.getAttributeAsBoolean(<span class="jxr_string">"autodetect"</span>, <strong class="jxr_keyword">true</strong>);
+<a name="432" href="#432">432</a>             <strong class="jxr_keyword">if</strong> (autodetect) {
+<a name="433" href="#433">433</a>                 helloName = hostName;
+<a name="434" href="#434">434</a>             } <strong class="jxr_keyword">else</strong> {
+<a name="435" href="#435">435</a>                 <em class="jxr_comment">// Should we use the defaultdomain here ?</em>
+<a name="436" href="#436">436</a>                 helloName = helloConf.getValue(<span class="jxr_string">"localhost"</span>);
+<a name="437" href="#437">437</a>             }
+<a name="438" href="#438">438</a>         } <strong class="jxr_keyword">else</strong> {
+<a name="439" href="#439">439</a>             helloName = <strong class="jxr_keyword">null</strong>;
+<a name="440" href="#440">440</a>         }
+<a name="441" href="#441">441</a>         infoBuffer =
+<a name="442" href="#442">442</a>             <strong class="jxr_keyword">new</strong> StringBuffer(64)
+<a name="443" href="#443">443</a>                     .append(getServiceType())
+<a name="444" href="#444">444</a>                     .append(<span class="jxr_string">" handler hello name is: "</span>)
+<a name="445" href="#445">445</a>                     .append(helloName);
+<a name="446" href="#446">446</a>         getLogger().info(infoBuffer.toString());
+<a name="447" href="#447">447</a>     }
+<a name="448" href="#448">448</a> 
+<a name="449" href="#449">449</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="450" href="#450">450</a> <em class="jxr_javadoccomment">     * @see org.apache.avalon.framework.activity.Initializable#initialize()</em>
+<a name="451" href="#451">451</a> <em class="jxr_javadoccomment">     */</em>
+<a name="452" href="#452">452</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> initialize() <strong class="jxr_keyword">throws</strong> Exception {
+<a name="453" href="#453">453</a>         <strong class="jxr_keyword">if</strong> (!isEnabled()) {
+<a name="454" href="#454">454</a>             getLogger().info(getServiceType() + <span class="jxr_string">" Disabled"</span>);
+<a name="455" href="#455">455</a>             System.out.println(getServiceType() + <span class="jxr_string">" Disabled"</span>);
+<a name="456" href="#456">456</a>             <strong class="jxr_keyword">return</strong>;
+<a name="457" href="#457">457</a>         }
+<a name="458" href="#458">458</a>         getLogger().debug(getServiceType() + <span class="jxr_string">" init..."</span>);
 <a name="459" href="#459">459</a> 
-<a name="460" href="#460">460</a>         getLogger().debug(getServiceType() + <span class="jxr_string">" ...init end"</span>);
-<a name="461" href="#461">461</a> 
-<a name="462" href="#462">462</a>         initializeHandlerPool();
+<a name="460" href="#460">460</a>         <em class="jxr_comment">// keeping these looked up services locally, because they are only needed beyond initialization</em>
+<a name="461" href="#461">461</a>         ThreadManager threadManager = (ThreadManager) componentManager.lookup(ThreadManager.ROLE);
+<a name="462" href="#462">462</a>         SocketManager socketManager = (SocketManager) componentManager.lookup(SocketManager.ROLE);
 <a name="463" href="#463">463</a>         
-<a name="464" href="#464">464</a>         <em class="jxr_comment">// do avalon specific preparations</em>
-<a name="465" href="#465">465</a>         ContainerUtil.enableLogging(theHandlerPool, getLogger());
-<a name="466" href="#466">466</a>         ContainerUtil.initialize(theHandlerPool);
+<a name="464" href="#464">464</a>         initializeThreadPool(threadManager);
+<a name="465" href="#465">465</a> 
+<a name="466" href="#466">466</a>         initializeServerSocket(socketManager);
 <a name="467" href="#467">467</a> 
-<a name="468" href="#468">468</a>         theWatchdogFactory = getWatchdogFactory();
+<a name="468" href="#468">468</a>         getLogger().debug(getServiceType() + <span class="jxr_string">" ...init end"</span>);
 <a name="469" href="#469">469</a> 
-<a name="470" href="#470">470</a>     }
-<a name="471" href="#471">471</a> 
-<a name="472" href="#472">472</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> initializeThreadPool(ThreadManager threadManager) {
-<a name="473" href="#473">473</a>         <strong class="jxr_keyword">if</strong> (threadGroup != <strong class="jxr_keyword">null</strong>) {
-<a name="474" href="#474">474</a>             threadPool = threadManager.getThreadPool(threadGroup);
-<a name="475" href="#475">475</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="476" href="#476">476</a>             threadPool = threadManager.getDefaultThreadPool();
-<a name="477" href="#477">477</a>         }
+<a name="470" href="#470">470</a>         initializeHandlerPool();
+<a name="471" href="#471">471</a>         
+<a name="472" href="#472">472</a>         <em class="jxr_comment">// do avalon specific preparations</em>
+<a name="473" href="#473">473</a>         ContainerUtil.enableLogging(theHandlerPool, getLogger());
+<a name="474" href="#474">474</a>         ContainerUtil.initialize(theHandlerPool);
+<a name="475" href="#475">475</a> 
+<a name="476" href="#476">476</a>         theWatchdogFactory = getWatchdogFactory();
+<a name="477" href="#477">477</a> 
 <a name="478" href="#478">478</a>     }
 <a name="479" href="#479">479</a> 
-<a name="480" href="#480">480</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> initializeServerSocket(SocketManager socketManager) <strong class="jxr_keyword">throws</strong> Exception {
-<a name="481" href="#481">481</a>         <strong class="jxr_keyword">try</strong> {
-<a name="482" href="#482">482</a>             initializeServerSocketWorker(socketManager);
-<a name="483" href="#483">483</a>         } <strong class="jxr_keyword">catch</strong> (BindException e) {
-<a name="484" href="#484">484</a>             <em class="jxr_comment">// handle a common exception and give detailed error message</em>
-<a name="485" href="#485">485</a>             String errorMessage = getBindingErrorMessage(e);
-<a name="486" href="#486">486</a>             System.out.println(<span class="jxr_string">"------------------------------"</span>);
-<a name="487" href="#487">487</a>             System.out.println(errorMessage);
-<a name="488" href="#488">488</a>             System.out.println(<span class="jxr_string">"------------------------------"</span>);
-<a name="489" href="#489">489</a>             getLogger().fatalError(errorMessage);
-<a name="490" href="#490">490</a>             <strong class="jxr_keyword">throw</strong> e;
-<a name="491" href="#491">491</a>         }       
-<a name="492" href="#492">492</a>     }
-<a name="493" href="#493">493</a>      
-<a name="494" href="#494">494</a>     <strong class="jxr_keyword">private</strong> String getBindingErrorMessage(BindException e) {
-<a name="495" href="#495">495</a>         <em class="jxr_comment">// general info about binding error</em>
-<a name="496" href="#496">496</a>         StringBuffer errorMessage = <strong class="jxr_keyword">new</strong> StringBuffer();
-<a name="497" href="#497">497</a>         errorMessage.append(<span class="jxr_string">"FATAL ERROR when starting service '"</span>).append(getServiceType()).append(<span class="jxr_string">"'! "</span>);
-<a name="498" href="#498">498</a>         errorMessage.append(<span class="jxr_string">"could not bind to "</span>);
-<a name="499" href="#499">499</a>         errorMessage.append(bindTo == <strong class="jxr_keyword">null</strong> ? <span class="jxr_string">"0.0.0.0"</span> : bindTo.toString());
-<a name="500" href="#500">500</a>         errorMessage.append(<span class="jxr_string">":"</span>).append(port).append(<span class="jxr_string">". "</span>);
-<a name="501" href="#501">501</a>         
-<a name="502" href="#502">502</a>         <em class="jxr_comment">// try to deliver more specific information </em>
-<a name="503" href="#503">503</a>         <strong class="jxr_keyword">if</strong> (e.getMessage().indexOf(<span class="jxr_string">"Address already in use"</span>) != -1) {
-<a name="504" href="#504">504</a>             errorMessage.append(<span class="jxr_string">"Port is already exclusively in use by another application."</span>);
-<a name="505" href="#505">505</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (e.getMessage().indexOf(<span class="jxr_string">"Permission denied"</span>) != -1) {
-<a name="506" href="#506">506</a>             errorMessage.append(<span class="jxr_string">"The user account James is running under has not enough privileges to bind to this "</span>);
-<a name="507" href="#507">507</a>             <strong class="jxr_keyword">if</strong> (port &lt; 1024) errorMessage.append(<span class="jxr_string">"privileged "</span>);
-<a name="508" href="#508">508</a>             errorMessage.append(<span class="jxr_string">"port."</span>);
-<a name="509" href="#509">509</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="510" href="#510">510</a>             errorMessage.append(e.getMessage());
-<a name="511" href="#511">511</a>         }
-<a name="512" href="#512">512</a>         <strong class="jxr_keyword">return</strong> errorMessage.toString();

[... 626 lines stripped ...]