<div dir="ltr">Bill, does my bigger picture that I provided you help you understand my issues and what I&#39;m trying to accomplish?<div><br clear="all"><div><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div></div><div>Thanks!</div><div><br></div><div>~Brad</div><div><br></div><div><b>Developer Advocate</b></div><div><i>Ortus Solutions, Corp </i></div><div><b><br></b></div><div>E-mail: <a href="mailto:brad@coldbox.org" target="_blank">brad@coldbox.org</a></div><div>ColdBox Platform: <a href="http://www.coldbox.org" target="_blank">http://www.coldbox.org</a> </div><div>Blog: <a href="http://www.codersrevolution.com" target="_blank">http://www.codersrevolution.com</a></div><div><br></div></div></div></div></div></div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Jul 3, 2020 at 11:29 AM Brad Wood &lt;<a href="mailto:bdw429s@gmail.com">bdw429s@gmail.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><i>Can you give a bigger picture of exactly what you are trying to solve? </i> <br></blockquote><div><br></div>Hi Bill.  I know I&#39;ve talked with Stuart about my use of Undertow in the past and he&#39;s even helped review our code.  It&#39;s understandable you probably don&#39;t know where I&#39;m coming from :)  I typically don&#39;t get into the weeds of exactly how I&#39;m using Undertow since it&#39;s a long story, but since you asked I&#39;ll fill you in.  I&#39;m the lead developer on a tool called CommandBox which is a <div><ul><li>CLI</li><li>REPL </li><li>package manager</li><li>scaffold</li><li>server for CFML applications (powered under the hood using pre-packaged WARs and Undertow</li></ul><div><a href="https://commandbox.ortusbooks.com/getting-started-guide" target="_blank">https://commandbox.ortusbooks.com/getting-started-guide</a>  <br></div><div><br></div><div>Undertow is packaged quite nicely inside of a black box and frankly, my users don&#39;t know or care that it&#39;s there.  We use a custom resource manager that allows us to serve JIT&#39;d CFML templates from a separate web root outside the WAR while powering the servlet from a pre-packaged WAR in a manner that is the same as Adobe ColdFusion or Lucee Server&#39;s Tomcat-based installations.  Overall, that works great and has been in use for 5-6 years now, powering roughly 50% of the docker usage in the CF community.</div></div><div><br></div><div>All a CommandBox user needs to do to start up a CF server is (box has a built in interactive shell based on JLine) </div><div><br></div><div><font face="monospace">CommandBox&gt; echo &quot;Hello world&quot; &gt;  index.cfm<br></font></div><div><font face="monospace">

CommandBox&gt; server start port=8080</font></div><div><br></div><div>And boom, a browser window opens up serving their hello world message.  They can even use CommandBox/Undertow to serve up a static HTML server just like the &quot;npm serve&quot; command, but with no Node :)  CommandBox also has a singular JSON file that allows users to control every aspect of their server</div><div><ul><li>JRE - auto installed from the AdoptOpenJDK API</li><li>CF engine/version - auto installed from Forgebox.io</li><li>

Ports (HTTP/HTTPS/AJP)

</li><li>SSL Certs</li><li>virtual directories</li><li>Lib directories to class load jars from for the app</li><li>welcome pages</li><li>Basic auth</li><li>heap size</li><li>URL rewrites (Currently powered by Tuckey)</li><li><b>Error pages</b></li><li>And coming soon-- rules defined in Undertow&#39;s predicate language placed right into an array in the JSON file.</li></ul><div>Doc Reference for all configuration options: </div></div><div><a href="https://commandbox.ortusbooks.com/embedded-server/server.json" target="_blank">https://commandbox.ortusbooks.com/embedded-server/server.json</a>  <br></div><div><br></div><div>So to review, my users spin up servers externally controlled by CLI parameters, local JSON files shipped with the app, or even global default settings they&#39;ve baked into their CLI.  My users don&#39;t know or care about Undertow, it &quot;just works&quot; for them.  </div><div>The addition of the predicate language will give my users an option other than Tuckey to accomplish the following</div><div><ul><li>Add rewrites to their app</li><li>Block common administrator paths from prying eyes</li><li>Secure sensitive configuration files they don&#39;t want served from the web root</li><li>Configure reverse proxies and load balanced proxies on the fly</li></ul><div>I even plan on baking some of these security rules into the CommandBox core so their servers are better secured by default.  </div><div><br></div><div>So here is a totally realistic example of how I envision a server being started (The &quot;server set&quot; command simply modifies the server.json files for you)</div></div><div><font face="monospace"><br></font></div><div><font face="monospace">CommandBox&gt; server set web.errorPages.404=notfound.html</font></div><div><font face="monospace">CommandBox&gt; server set web.rules = &#39;[ &quot;path(/box.json)-&gt;response-code(404)&quot; ]&#39;</font></div><div><font face="monospace">CommandBox&gt; server start</font></div><div><br></div><div>So, in that user&#39;s mind, they just</div><div><ol><li>Configured all <b>404 </b>requests to use a custom <b>notfound.html</b> file</li><li>Placed a predicate rule that responds with a <b>404</b> to any request to the secret file <b>box.json</b></li><li>It would be the completely reasonable expectation of that user that if they slap <b>/box.json</b> in their browser, they will see the contents of their <b>notFound.html</b> error page</li></ol><div>However, number 3 won&#39;t/doesn&#39;t happen for various behind-the-scenes technical reasons.  I get those reasons, but at the end of the day I need this behavior to be consistent in my usage of undertow.  I can&#39;t just tell people, &quot;Oh yeah, your error pages don&#39;t work half the time, but don&#39;t worry, there&#39;s a really good reason for it!&quot;, lol.  The error pages in the JSON configuration for CommandBox are fed directly to the servlet&#39;s error pages deployment info and the web.rules are parsed into a PredicatesHandler.  But again, this is a black box so it needs to &quot;just work&quot; like people will expect.  That&#39;s what I&#39;m after.</div></div><div><br></div><div>So, now that the background stuff is out of the way, allow me also address the rest of your questions categorically:</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Where will your actual routing logic live? </blockquote><div><br></div><div>I&#39;m not quite sure if you&#39;re asking where the actual text-based predicate language will be stored or if you&#39;re asking where in the handler chain the PredicatesHandler will be processed.  If you&#39;re asking about the rules, they will be provided by the users of my tool and can literally come from anywhere based on their needs.  If you&#39;re asking where in the handler chain I&#39;ll process them, I&#39;ve covered previously in this thread having them &quot;inside&quot; the servlet initial handler and &quot;outside&quot; the servlet and both approaches have had issues.  Perhaps the short answer is, I&#39;m willing to put it wherever the heck it needs to be in order to make this work :)</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">What types of things are you expecting the predicate language to accomplish for you? </blockquote><div><br></div><div>Everything.  Literally everything.  I am exposing Undertow&#39;s predicate language directly to the end users (developers, sysops guys, etc) for them to tap into and add whatever rules they deem necessary for rewrites, security, or even reverse proxies in their app.  I&#39;m not even sure why this matters to the conversation.  But suffice it to say, I need Undertow&#39;s predicate language to be capable of doing everything it does, but I need consistency in how error status codes are handled in a manner that matches the rest of the server.<br></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Why do you need to be tied to servlets? </blockquote><div><br></div><div>I don&#39;t.  Quite frankly, I couldn&#39;t care less what it&#39;s tied to.  That said, servlets already have the ability to control error pages.  CommandBox will parse the <b>web.xml</b> in the WAR to look for any configured error pages (since user&#39;s can supply a custom WAR) as well as combine the configuration in the user&#39;s server.json file. Right now we tap into the error pages functionality of the servlet because it&#39;s simple, it&#39;s built in, and it just makes sense.  I need an error page functionality that is consistent across all uses of Undertow.  Not just firing in some scenarios on Tuesdays after 3pm depending on a complex internal routing of your handler chain.  Again, my users don&#39;t know or care how this works, if they configure a custom 404 page, they expect it to be used by default for all 404s that don&#39;t otherwise return content.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><font face="monospace" color="#0000ff">path(/box.json)-&gt;response-code(404)<br></font>This example seems pretty impractical because if you just left the line out entirely then wouldn&#39;t your router decide this route doesn&#39;t exist and handle the 404 in your servlet code?</blockquote><div><br></div><div>Sorry, but I&#39;m not quite following you.  That line is a prime example of what I expect people to use the predicate language for in securing parts of their app they don&#39;t want served.  The way CFML apps work is you place all files in your web root (images, jss, css, html, and CFMs).  There is a default static handler that just serves up whatever files you request, and a servlet mapping for *.cfm files that route them through the CF servlet (which JIT compiles and processes them).  If I don&#39;t have the predicate rule above, a user would be able to directly hit that configuration file in the web root-- and being just a normal JSON file, it would be served up no problem.  The request would not be a 404 in the servlet because that file actually exists on disk and would be served.  Which, of course, is the entire purpose of this feature!</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">With attributes and custom HttpHandlers you should be able to accomplish pretty much anything you want  </blockquote><div><br></div><div>Yes, I know.  Undertow is very powerful.  My questions here are two fold</div><div><ul><li>How in the heck do we accomplish it??</li><li>Can Undertow be made better?  The default behavior of the response-code handler in this case seems ... <i>not useful.  </i>I mean, in what universe is it ok to respond to a request with a 404 status code but no response body.  Surely we can agree, this stands to be improved.  But the predicate language doesn&#39;t seem to provide a consistent way to tap into the error pages in the deployment.</li></ul></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">is there a specific need to have some of this logic live in servlets? </blockquote><div><br></div><div>Like I said above, not really -- other than the fact that this is a <i>servlet deployment</i> making use of <i>servlet features</i> such as error pages. <br></div><div><br></div><div><div><div dir="ltr"><div dir="ltr"><div><div dir="ltr"><div></div><div>Thanks!</div><div><br></div><div>~Brad</div><div><br></div><div><b>Developer Advocate</b></div><div><i>Ortus Solutions, Corp </i></div><div><b><br></b></div><div>E-mail: <a href="mailto:brad@coldbox.org" target="_blank">brad@coldbox.org</a></div><div>ColdBox Platform: <a href="http://www.coldbox.org" target="_blank">http://www.coldbox.org</a> </div><div>Blog: <a href="http://www.codersrevolution.com" target="_blank">http://www.codersrevolution.com</a></div><div><br></div></div></div></div></div></div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Jul 3, 2020 at 7:22 AM Bill O&#39;Neil &lt;<a href="mailto:bill@dartalley.com" target="_blank">bill@dartalley.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Can you give a bigger picture of exactly what you are trying to solve?<div>Where will your actual routing logic live?</div><div>What types of things are you expecting the predicate language to accomplish for you?</div><div>Why do you need to be tied to servlets?</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><font face="monospace" color="#0000ff">path(/box.json)-&gt;response-code(404)</font></div></blockquote><div>This example seems pretty impractical because if you just left the line out entirely then wouldn&#39;t your router decide this route doesn&#39;t exist and handle the 404 in your servlet code?</div><div><br></div><div>With attributes and custom HttpHandlers you should be able to accomplish pretty much anything you want is there a specific need to have some of this logic live in servlets?</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Jul 3, 2020 at 3:20 AM Brad Wood &lt;<a href="mailto:bdw429s@gmail.com" target="_blank">bdw429s@gmail.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">So what is our solution here?  It seems I&#39;m darned if I do and darned if I don&#39;t.  <div><br></div><div>If I move the predicates until after the servlet then I can call sendError() on the servlet response to trigger the error pages, however I lose the ability to rewrite the request (a deal breaker)  <div><br></div><div>But if I leave the predicates before the servlet, I can perform rewrites, but I can no longer call sendError() since, as you said, there is no servlet response yet!</div><div><br></div><div>I understand the separation between the servlet and core, but it&#39;s killing me here.  This seems like such a simple concept.  </div><div><ul><li>I have a servlet deployment with error page configured</li><li>I want to have a predicated handler that uses the configured error pages</li></ul></div><div>Can I accomplish this with a default response listener that accesses the error page configuration and dispatches the appropriate location?  Even that feels dirty. It seems there should be a handler invoked directly from the predicates that can dispatch the error pages configured in the servlet.  Even if all it did was look up the corresponding location for the given status code and forward the request there. But I can&#39;t even figure out how to access the deployment from the exchange.</div><div><br clear="all"><div><div dir="ltr"><div dir="ltr"><div><div dir="ltr"><div></div><div>Thanks!</div><div><br></div><div>~Brad</div><div><br></div><div><b>Developer Advocate</b></div><div><i>Ortus Solutions, Corp </i></div><div><b><br></b></div><div>E-mail: <a href="mailto:brad@coldbox.org" target="_blank">brad@coldbox.org</a></div><div>ColdBox Platform: <a href="http://www.coldbox.org" target="_blank">http://www.coldbox.org</a> </div><div>Blog: <a href="http://www.codersrevolution.com" target="_blank">http://www.codersrevolution.com</a></div><div><br></div></div></div></div></div></div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Jul 2, 2020 at 9:22 PM Stuart Douglas &lt;<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, 3 Jul 2020 at 10:34, Brad Wood &lt;<a href="mailto:bdw429s@gmail.com" target="_blank">bdw429s@gmail.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Before I give that workaround a try, a couple existential questions...<div><ul><li>Should the <b>response-code</b> handler also set the <b>errorCode</b> as well in the servlet request context so it triggers the doErrorDispatch() action?</li><li>Or should there be another built-in handler called &quot;send-error&quot; or similar that does this.</li></ul><div>Ex: </div></div><div><font face="monospace" color="#0000ff">path( /secret.json ) -&gt; 

send-error

( 404 )</font></div><div><font face="monospace" color="#0000ff">path( /admin/ ) -&gt; 

send-error( 503 )</font></div><div><br></div><div>I&#39;m sort of questioning what the usefulness is of the <b>response-code</b> handler however (at least in the context of the predicate language) if it&#39;s default behavior is NOT to trigger the error code and therefore the error page.  </div></div></blockquote><div><br></div><div>These error pages are part of Servlet, while the predicate language is part of core. The response-code handler does not really know anything about the Servlet deployment.<br></div><div><br></div><div>Generally the predicate language is run before Servlet (e.g. in WildFly), so the HttpServletRequest/Response has not been created yet. This gives a lot of flexibility in that you can make changes to route the request to different contexts and potentially skip servlet altogether, but the down side is that it is not tightly integrated with Servlet. <br></div><div><br></div><div>Stuart<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div><br clear="all"><div><div dir="ltr"><div dir="ltr"><div><div dir="ltr"><div></div><div>Thanks!</div><div><br></div><div>~Brad</div><div><br></div><div><b>Developer Advocate</b></div><div><i>Ortus Solutions, Corp </i></div><div><b><br></b></div><div>E-mail: <a href="mailto:brad@coldbox.org" target="_blank">brad@coldbox.org</a></div><div>ColdBox Platform: <a href="http://www.coldbox.org" target="_blank">http://www.coldbox.org</a> </div><div>Blog: <a href="http://www.codersrevolution.com" target="_blank">http://www.codersrevolution.com</a></div><div><br></div></div></div></div></div></div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Jul 2, 2020 at 7:01 PM Stuart Douglas &lt;<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>Hmm, this is because the servlet status code is only triggered by a sendError method, not by just setting the code.</div><div><br></div><div>You probably need to write a custom one that looks like this (plus the relevant predicate languge bits):</div><div><br></div><div>public class SendErrorHandler implements HttpHandler {<br>    <br>    private final int code;<br><br>    public SendErrorHandler(int code) {<br>        this.code = code;<br>    }<br><br>    @Override<br>    public void handleRequest(HttpServerExchange exchange) throws Exception {<br>        ServletRequestContext src = exchange.getAttachment(ServletRequestContext.ATTACHMENT_KEY);<br>        ((HttpServletResponse)src.getServletResponse()).sendError(code);<br>    }<br>}</div><div><br></div><div>Stuart<br></div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, 3 Jul 2020 at 09:40, Brad Wood &lt;<a href="mailto:bdw429s@gmail.com" target="_blank">bdw429s@gmail.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Thanks for the reply Stuart.  I&#39;ve tried this with no success, but perhaps I&#39;m doing it wrong.<div><br><font face="monospace" color="#0000ff">List&lt;PredicatedHandler&gt; ph = PredicatedHandlersParser.parse(predicatesLines, _classLoader);<br>servletBuilder.addOuterHandlerChainWrapper(next -&gt; Handlers.predicates(ph,next));</font><br></div><div><br></div><div>When the response-code handler fires, I still get no response body.</div><div><br></div><div>On a related note, when I move the predicates into an outer handler chain wrapper, my default response listener also doesn&#39;t fire at all.  </div><div><br></div><div>On an unrelated train of thought, I&#39;ve been trying to see if I can get the default response listener to automatically dispatch the correct error page, but that hasn&#39;t been going well either.  If I don&#39;t use the outer handler chain idea, but try to capture the empty response in a default response listener, I can return a static message using the Sender class</div><div><br></div><div><font face="monospace" color="#0000ff">Sender sender = exchange.getResponseSender();<br>sender.send(errorHTMLString);</font><br></div><div><br></div><div>But if I try to run something this in my default response listener to invoke my error pages</div><div><br></div><div><font face="monospace" color="#0000ff">ServletRequestContext src = exchange.getAttachment(ServletRequestContext.ATTACHMENT_KEY);<br>HttpServletResponseImpl response = src.getOriginalResponse();<br>response.doErrorDispatch( exchange.getStatusCode(), exchange.getReasonPhrase() );</font><br></div><div><br></div><div>Then it&#39;s as though nothing happens and I still get an empty response.</div><div><br clear="all"><div><div dir="ltr"><div dir="ltr"><div><div dir="ltr"><div></div><div>Thanks!</div><div><br></div><div>~Brad</div><div><br></div><div><b>Developer Advocate</b></div><div><i>Ortus Solutions, Corp </i></div><div><b><br></b></div><div>E-mail: <a href="mailto:brad@coldbox.org" target="_blank">brad@coldbox.org</a></div><div>ColdBox Platform: <a href="http://www.coldbox.org" target="_blank">http://www.coldbox.org</a> </div><div>Blog: <a href="http://www.codersrevolution.com" target="_blank">http://www.codersrevolution.com</a></div><div><br></div></div></div></div></div></div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Jul 2, 2020 at 6:17 PM Stuart Douglas &lt;<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>The predicate languages are executed before the Servler handlers, so they won&#39;t be handled by Servlet error pages.</div><div><br></div><div>If you are setting this all up programmatically you could use io.undertow.servlet.api.DeploymentInfo#addOuterHandlerChainWrapper to setup the predicate handler after the initial servlet one, which should mean that the servlet error handling will handle the response code.</div><div><br></div><div>Stuart<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, 3 Jul 2020 at 08:25, Brad Wood &lt;<a href="mailto:bdw429s@gmail.com" target="_blank">bdw429s@gmail.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">When I configure an error page similar to this:<div><br></div><div><font face="monospace" color="#0000ff">servletBuilder.addErrorPage( new ErrorPage( &quot;404.html&quot;, 404));</font><br></div><div><br></div><div>This works great when I hit a path in my browser that doesn&#39;t exist.  The contents of the <b>404.html</b> file is served with a response code of <b>404</b>.</div><div><br></div><div>However, if I also use the predicate language to define something like:</div><div><br></div><div><font face="monospace" color="#0000ff">path(/box.json)-&gt;response-code(404)</font><br></div><div><br></div><div>and then I hit <b>localhost/box.json</b> in my browser, I get a <b>404</b> status code but with no response body. </div><div><ul><li>The docs say the response-code handler ends the exchange, but should it still respect the error pages?<br></li><li>How can I modify my use of Undertow to respect the error pages when using the response-code handler?</li><li>I&#39;ve seen in the docs the ability to have a <b>addDefaultResponseListener()</b> but I&#39;m not sure if it is the correct solution for this, nor how I would access the error page configuration dynamically as to not need to duplicate my work.</li></ul></div><div><div><div dir="ltr"><div dir="ltr"><div><div dir="ltr"><div>Thanks!</div><div><br></div><div>~Brad</div><div><br></div><div><b>Developer Advocate</b></div><div><i>Ortus Solutions, Corp </i></div><div><b><br></b></div><div>E-mail: <a href="mailto:brad@coldbox.org" target="_blank">brad@coldbox.org</a></div><div>ColdBox Platform: <a href="http://www.coldbox.org" target="_blank">http://www.coldbox.org</a> </div><div>Blog: <a href="http://www.codersrevolution.com" target="_blank">http://www.codersrevolution.com</a></div><div><br></div></div></div></div></div></div></div></div>
_______________________________________________<br>
undertow-dev mailing list<br>
<a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/undertow-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/undertow-dev</a></blockquote></div>
</blockquote></div>
</blockquote></div>
</blockquote></div>
</blockquote></div></div>
</blockquote></div>
_______________________________________________<br>
undertow-dev mailing list<br>
<a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/undertow-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/undertow-dev</a></blockquote></div>
</blockquote></div>
</blockquote></div>