<div dir="ltr">seems to be some sort of timeout, because everything work as expected, but then after waiting for a while and got again the 502.<div><br></div><div>also, I did set the content-length for static resources and call .endExchange after a 304 response, set a backlog of 1000 and 10000 too. But it didn&#39;t help.</div><div><br></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jan 19, 2015 at 9:57 AM, Tomaž Cerar <span dir="ltr">&lt;<a href="mailto:tomaz.cerar@gmail.com" target="_blank">tomaz.cerar@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Maybe related to <a href="http://stackoverflow.com/questions/169453/bad-gateway-502-error-with-apache-mod-proxy-and-tomcat" target="_blank">http://stackoverflow.com/questions/169453/bad-gateway-502-error-with-apache-mod-proxy-and-tomcat</a><br><br>or <a href="http://qnalist.com/questions/4502641/users-httpd-mod-proxy-ignores-incompleteness-of-chunked-coding-response-from-backend" target="_blank">http://qnalist.com/questions/4502641/users-httpd-mod-proxy-ignores-incompleteness-of-chunked-coding-response-from-backend</a><br></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jan 19, 2015 at 1:33 PM, Edgar Espina <span dir="ltr">&lt;<a href="mailto:espina.edgar@gmail.com" target="_blank">espina.edgar@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Sure, it is 2.2.15.<div><br></div><div><br></div></div><div class="gmail_extra"><div><div><br><div class="gmail_quote">On Mon, Jan 19, 2015 at 9:29 AM, Tomaž Cerar <span dir="ltr">&lt;<a href="mailto:tomaz.cerar@gmail.com" target="_blank">tomaz.cerar@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div>Edgar,<br><br></div>what is the version of Apache and mod_proxy module you are using.<br>maybe it will be easier to reproduce with exact version you have..<br><br>--<br></div>tomaz<br></div><div class="gmail_extra"><br><div class="gmail_quote"><div><div>On Mon, Jan 19, 2015 at 1:15 PM, Edgar Espina <span dir="ltr">&lt;<a href="mailto:espina.edgar@gmail.com" target="_blank">espina.edgar@gmail.com</a>&gt;</span> wrote:<br></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div><div dir="ltr">The source code can be found here: <a href="https://github.com/jooby-project/jooby" target="_blank">https://github.com/jooby-project/jooby</a><div><br><div>Undertow related classes are here: <a href="https://github.com/jooby-project/jooby/tree/master/jooby/src/main/java/org/jooby/internal/undertow" target="_blank">https://github.com/jooby-project/jooby/tree/master/jooby/src/main/java/org/jooby/internal/undertow</a>.</div><div>Server is built here: <a href="https://github.com/jooby-project/jooby/blob/master/jooby/src/main/java/org/jooby/internal/undertow/UndertowServer.java" target="_blank">https://github.com/jooby-project/jooby/blob/master/jooby/src/main/java/org/jooby/internal/undertow/UndertowServer.java</a></div></div><div>Response is sent here: <a href="https://github.com/jooby-project/jooby/blob/master/jooby/src/main/java/org/jooby/internal/undertow/UndertowResponse.java#L336-382" target="_blank">https://github.com/jooby-project/jooby/blob/master/jooby/src/main/java/org/jooby/internal/undertow/UndertowResponse.java#L336-382</a></div><div><br></div><div>My microweb-framework was built on top of Jetty, so for now I used the blocking API and follow more or less what we usually do with Servlets (acquire an outstream).</div><div><br></div><div>I will review what I&#39;m doing and try to figure it out what is going on too.</div><div><br></div><div>Thanks for your help, Stuart.</div><div><br></div><div><br></div><div><br></div></div><div class="gmail_extra"><div><div><br><div class="gmail_quote">On Mon, Jan 19, 2015 at 2:12 AM, Stuart Douglas <span dir="ltr">&lt;<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">My best guess as to what is happening is that Undertow closing a connection after a request is done for some reason, and the apache attempts to re-use this connection without realising that it is dead.<br>
<br>
In general this should not happen, Undertow should only forcibly close a connection if it knows that it is broken (e.g. a content length is set and the full amount of content is not written). For a normal graceful close Undertow should be sending Connection:close headers.<br>
<br>
I am going to investigate some more, and see if I can figure out what is going on. It seems unlikely but is there any chance your code forcibly closes the ServerConnection (HttpServerExchange.getConnection()) because that could potentially cause this issue. Setting the exchange to non-persistent after headers have been sent could also cause it.<br>
<span><br>
Stuart<br>
<br>
----- Original Message -----<br>
&gt; From: &quot;Edgar Espina&quot; &lt;<a href="mailto:espina.edgar@gmail.com" target="_blank">espina.edgar@gmail.com</a>&gt;<br>
&gt; To: &quot;Stuart Douglas&quot; &lt;<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt;<br>
&gt; Cc: <a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a><br>
</span><div><div>&gt; Sent: Monday, 19 January, 2015 2:53:06 PM<br>
&gt; Subject: Re: [undertow-dev] occasional 502 from Apache HTTP Proxy<br>
&gt;<br>
&gt; Done, but makes no difference. Still got the 502 random errors :S<br>
&gt;<br>
&gt; On Sun, Jan 18, 2015 at 11:13 PM, Stuart Douglas &lt;<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt;<br>
&gt; wrote:<br>
&gt;<br>
&gt; &gt; I had a play around with apache locally, and I could reproduce this in<br>
&gt; &gt; some circumstances, and it looks like we are not setting a high enough<br>
&gt; &gt; backlog by default.<br>
&gt; &gt;<br>
&gt; &gt; Can you try adding:<br>
&gt; &gt;<br>
&gt; &gt; undertow.setSocketOption(Options.BACKLOG, 1000)<br>
&gt; &gt;<br>
&gt; &gt; To your Undertow builder? I am going to increase this in our default<br>
&gt; &gt; config upstream.<br>
&gt; &gt;<br>
&gt; &gt; Hopefully this is the issue that you are running into.<br>
&gt; &gt;<br>
&gt; &gt; Stuart<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; ----- Original Message -----<br>
&gt; &gt; &gt; From: &quot;Edgar Espina&quot; &lt;<a href="mailto:espina.edgar@gmail.com" target="_blank">espina.edgar@gmail.com</a>&gt;<br>
&gt; &gt; &gt; To: &quot;Stuart Douglas&quot; &lt;<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt;<br>
&gt; &gt; &gt; Cc: <a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a><br>
&gt; &gt; &gt; Sent: Monday, 19 January, 2015 12:10:16 PM<br>
&gt; &gt; &gt; Subject: Re: [undertow-dev] occasional 502 from Apache HTTP Proxy<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; It is a default undertow instance with a HTTP listener, just set work<br>
&gt; &gt; &gt; threads to 200. Is there a default idle timeout? I can&#39; tell from javadoc<br>
&gt; &gt; &gt; and looking at the code.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; On Sun, Jan 18, 2015 at 9:59 PM, Stuart Douglas &lt;<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt;<br>
&gt; &gt; wrote:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Edgar Espina wrote:<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;&gt; I&#39;m not, channel does it.<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt; Problem is present on both. For example, home page has a<br>
&gt; &gt; content-length<br>
&gt; &gt; &gt; &gt;&gt; header but jquery.js use chunked.<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; In general if you are serving static resources you are better off<br>
&gt; &gt; setting<br>
&gt; &gt; &gt; &gt; the content length (slightly more efficient, and the browser can<br>
&gt; &gt; display<br>
&gt; &gt; &gt; &gt; progress on downloads).<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;&gt; Do I have to call .endExchange? or closing the output stream is<br>
&gt; &gt; enough?<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Closing the output stream is enough. endExchange is automatically<br>
&gt; &gt; called<br>
&gt; &gt; &gt; &gt; once the call stack returns anyway, unless you have dispatched the<br>
&gt; &gt; exchange<br>
&gt; &gt; &gt; &gt; or started async IO.<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; The &#39;connection reset by peer&#39; error in the apache log while reading<br>
&gt; &gt; the<br>
&gt; &gt; &gt; &gt; status like kinda indicates that the request does not even get to this<br>
&gt; &gt; &gt; &gt; point anyway, and the underlying TCP connection is probably being torn<br>
&gt; &gt; down<br>
&gt; &gt; &gt; &gt; somehow.<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Do you have any kind of timeouts set? If you have an idle timeout set<br>
&gt; &gt; on<br>
&gt; &gt; &gt; &gt; the listener there is a race where Undertow can close the channel due<br>
&gt; &gt; to<br>
&gt; &gt; &gt; &gt; inactivity just as the front end starts to send a request.<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Stuart<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;&gt; Thanks<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt; On Sun, Jan 18, 2015 at 9:48 PM, Stuart Douglas &lt;<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a><br>
&gt; &gt; &gt; &gt;&gt; &lt;mailto:<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt;&gt; wrote:<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;     Another question, are you setting a content length on the<br>
&gt; &gt; responses?<br>
&gt; &gt; &gt; &gt;&gt;     If not the channel will automatically set one if the response fits<br>
&gt; &gt; &gt; &gt;&gt;     inside a buffer, otherwise chunked encoding will be used.<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;     It might be helpful to know if this only happens on chunked, fixed<br>
&gt; &gt; &gt; &gt;&gt;     length or both.<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;     Stuart<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;     Edgar Espina wrote:<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;         latest: 1.2.0.Beta8<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;         On Sun, Jan 18, 2015 at 9:42 PM, Stuart Douglas<br>
&gt; &gt; &gt; &gt;&gt;         &lt;<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a> &lt;mailto:<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt;<br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a> &lt;mailto:<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt;&gt;&gt;<br>
&gt; &gt; wrote:<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;              Also what version of Undertow are you using?<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;              Stuart<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;              ----- Original Message -----<br>
&gt; &gt; &gt; &gt;&gt;         &gt;   From: &quot;Edgar Espina&quot; &lt;<a href="mailto:espina.edgar@gmail.com" target="_blank">espina.edgar@gmail.com</a><br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:espina.edgar@gmail.com" target="_blank">espina.edgar@gmail.com</a>&gt;<br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:espina.edgar@gmail.com" target="_blank">espina.edgar@gmail.com</a> &lt;mailto:<a href="mailto:espina.edgar@gmail.com" target="_blank">espina.edgar@gmail.com</a><br>
&gt; &gt; &gt; &gt;&gt; &gt;__&gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  To: &quot;Stuart Douglas&quot; &lt;<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a><br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt;<br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a> &lt;mailto:<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt;&gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  Cc: <a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a><br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a>&gt;<br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:undertow-dev@lists." target="_blank">undertow-dev@lists.</a>__<a href="http://jboss.org" target="_blank">jboss.org</a><br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a>&gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  Sent: Monday, 19 January, 2015 11:13:21 AM<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  Subject: Re: [undertow-dev] occasional 502 from Apache HTTP<br>
&gt; &gt; &gt; &gt;&gt; Proxy<br>
&gt; &gt; &gt; &gt;&gt;         &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  found this in apache:<br>
&gt; &gt; &gt; &gt;&gt;         &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  (104) Connection reset by peer: proxy: error reading status<br>
&gt; &gt; &gt; &gt;&gt;         line from<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  remote server<br>
&gt; &gt; &gt; &gt;&gt;         &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  but nothing in undertow.<br>
&gt; &gt; &gt; &gt;&gt;         &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  got 502 on HTTP GET. Sometimes while calling the home page<br>
&gt; &gt; / or<br>
&gt; &gt; &gt; &gt;&gt;              when page<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  loads OK, got 502 on page resources (js, css, images).<br>
&gt; &gt; &gt; &gt;&gt;         &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  I call startBlocking and use the outputstream to write the<br>
&gt; &gt; &gt; &gt;&gt;              response, when<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  everything has been written I call the &quot;outputstream.close&quot;<br>
&gt; &gt; &gt; &gt;&gt;              method. Do I<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  need to call exchange.endExchange too?<br>
&gt; &gt; &gt; &gt;&gt;         &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  Thanks<br>
&gt; &gt; &gt; &gt;&gt;         &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  On Sun, Jan 18, 2015 at 8:52 PM, Stuart Douglas<br>
&gt; &gt; &gt; &gt;&gt;         &lt;<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a> &lt;mailto:<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt;<br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a> &lt;mailto:<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt;&gt;&gt;<br>
&gt; &gt; wrote:<br>
&gt; &gt; &gt; &gt;&gt;         &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  &gt; Is there any info in the log? Or is there any specific<br>
&gt; &gt; type<br>
&gt; &gt; &gt; &gt;&gt; of<br>
&gt; &gt; &gt; &gt;&gt;              request<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  &gt; that causes this?<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  &gt; Stuart<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  &gt; ----- Original Message -----<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  &gt; &gt; From: &quot;Edgar Espina&quot; &lt;<a href="mailto:espina.edgar@gmail.com" target="_blank">espina.edgar@gmail.com</a><br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:espina.edgar@gmail.com" target="_blank">espina.edgar@gmail.com</a>&gt;<br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:espina.edgar@gmail.com" target="_blank">espina.edgar@gmail.com</a> &lt;mailto:<a href="mailto:espina.edgar@gmail.com" target="_blank">espina.edgar@gmail.com</a><br>
&gt; &gt; &gt; &gt;&gt; &gt;__&gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; To: <a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a><br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a>&gt;<br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:undertow-dev@lists." target="_blank">undertow-dev@lists.</a>__<a href="http://jboss.org" target="_blank">jboss.org</a><br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a>&gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; Sent: Monday, 19 January, 2015 9:42:19 AM<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; Subject: [undertow-dev] occasional 502 from Apache HTTP<br>
&gt; &gt; &gt; &gt;&gt; Proxy<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; Hi,<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; I&#39;ve an Undertow application behind apache reverse<br>
&gt; &gt; proxy,<br>
&gt; &gt; &gt; &gt;&gt;              trying to load<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; a<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; page displays error 502 proxy error.<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; Still couldn&#39;t find why so I wonder if any of you find<br>
&gt; &gt; a<br>
&gt; &gt; &gt; &gt;&gt;              similar problem<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; with<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; Undertow and Apache.<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; Please note this is our first app on top of Undertow,<br>
&gt; &gt; &gt; &gt;&gt;              existing apps<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; running<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; on Tomcat/Jetty are OK.<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; Appreciate any help.<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; Thanks<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; --<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; edgar<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; _________________________________________________<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; undertow-dev mailing list<br>
&gt; &gt; &gt; &gt;&gt;          &gt; &gt; &gt; <a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a><br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a>&gt;<br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:undertow-dev@lists." target="_blank">undertow-dev@lists.</a>__<a href="http://jboss.org" target="_blank">jboss.org</a><br>
&gt; &gt; &gt; &gt;&gt;         &lt;mailto:<a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a>&gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  &gt; &gt;<br>
&gt; &gt; <a href="https://lists.jboss.org/__mailman/listinfo/undertow-dev" target="_blank">https://lists.jboss.org/__mailman/listinfo/undertow-dev</a><br>
&gt; &gt; &gt; &gt;&gt;         &lt;<a href="https://lists.jboss.org/mailman/listinfo/undertow-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/undertow-dev</a>&gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  --<br>
&gt; &gt; &gt; &gt;&gt;         &gt;  edgar<br>
&gt; &gt; &gt; &gt;&gt;         &gt;<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;         --<br>
&gt; &gt; &gt; &gt;&gt;         edgar<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;&gt; --<br>
&gt; &gt; &gt; &gt;&gt; edgar<br>
&gt; &gt; &gt; &gt;&gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; --<br>
&gt; &gt; &gt; edgar<br>
&gt; &gt; &gt;<br>
&gt; &gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; edgar<br>
&gt;<br>
</div></div></blockquote></div><br><br clear="all"><div><br></div></div></div><span><font color="#888888">-- <br><div>edgar</div>
</font></span></div>
<br></div></div><span>_______________________________________________<br>
undertow-dev mailing list<br>
<a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a><br>
</span><a href="https://lists.jboss.org/mailman/listinfo/undertow-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/undertow-dev</a><br></blockquote></div><br></div>
</blockquote></div><br><br clear="all"><div><br></div></div></div><span><font color="#888888">-- <br><div>edgar</div>
</font></span></div>
</blockquote></div><br></div>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature">edgar</div>
</div>