User Matt Woodward - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T12:08:18Z http://stackoverflow.com/feeds/user/3612 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/230644/how-do-i-connect-my-tomcat-app-to-apache-2-so-the-paths-arent-lame/707544#707544 0 Answer by Matt Woodward for How do I connect my tomcat app to apache 2 so the paths aren't lame? Matt Woodward 2009-04-01T22:09:44Z 2009-04-01T22:09:44Z <p>If you configure hosts on the Tomcat side as well then you can proxy to them and eliminate the context path for non-root webapps--in Tomcat server.xml:</p> <pre><code>&lt;Host name="myhost"&gt; &lt;Context path="" docBase="/path/to/files" /&gt; &lt;/Host&gt; </code></pre> <p>And on the Apache side:</p> <pre><code>&lt;VirtualHost *:80&gt; ServerName myhost ProxyPass / ajp://myhost:8009/ ProxyPassReverse / ajp://myhost:8009/ &lt;/VirtualHost&gt; </code></pre> <p>Hope that helps.</p> http://stackoverflow.com/questions/371985/is-openbd-or-railo-a-viable-replacement-for-coldfusion/455560#455560 1 Answer by Matt Woodward for Is OpenBD or Railo a viable replacement for ColdFusion? Matt Woodward 2009-01-18T17:44:29Z 2009-01-18T17:44:29Z <p>Support for cfdocument will be included in the next "major" versioned release of OpenBD.</p> <p>Just to give folks a bit of background on cfdocument support in OpenBD, a commercial library was used for cfdocument in New Atlanta BlueDragon, so that had to be removed when OpenBD went open source. The "hooks" are still in the OpenBD engine, however, so it's really just a matter of implementing the underlying functionality using an open source document engine, of which there are many.</p> http://stackoverflow.com/questions/59390/coldfusion-is-it-safe-to-leave-out-the-variables-keyword-in-a-cfc/148409#148409 0 Answer by Matt Woodward for ColdFusion: Is it safe to leave out the variables keyword in a CFC? Matt Woodward 2008-09-29T12:04:25Z 2008-09-29T12:04:25Z <p>Not explicitly scoping in the variables scope may work, but it's not a good idea, and honestly the only reason <em>not</em> to is out of laziness IMO. If you explicitly scope everything 1) you avoid potential issues, and 2) it makes the code easier to read because there's no question which scope things are in.</p> <p>To me it doesn't make the code more verbose (and certainly not unnecessarily verbose)--it's actually easier to read, avoids confusion, and avoids weird side effects that may crop up if you don't explicitly scope.</p> http://stackoverflow.com/questions/12669/resources-for-getting-started-with-web-development/148378#148378 1 Answer by Matt Woodward for Resources for getting started with web development? Matt Woodward 2008-09-29T11:54:37Z 2008-09-29T11:54:37Z <p>CFML (aka "ColdFusion" even though that's really an Adobe product, not the language) is definitely easy to learn, and if you want FOSS for CFML, in addition to Railo you can use <a href="http://openbluedragon.org" rel="nofollow">Open BlueDragon</a> which is a GPL CFML engine.</p>