User Matt Woodward - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T12:08:18Zhttp://stackoverflow.com/feeds/user/3612http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/230644/how-do-i-connect-my-tomcat-app-to-apache-2-so-the-paths-arent-lame/707544#7075440Answer by Matt Woodward for How do I connect my tomcat app to apache 2 so the paths aren't lame?Matt Woodward2009-04-01T22:09:44Z2009-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><Host name="myhost">
<Context path="" docBase="/path/to/files" />
</Host>
</code></pre>
<p>And on the Apache side:</p>
<pre><code><VirtualHost *:80>
ServerName myhost
ProxyPass / ajp://myhost:8009/
ProxyPassReverse / ajp://myhost:8009/
</VirtualHost>
</code></pre>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/371985/is-openbd-or-railo-a-viable-replacement-for-coldfusion/455560#4555601Answer by Matt Woodward for Is OpenBD or Railo a viable replacement for ColdFusion?Matt Woodward2009-01-18T17:44:29Z2009-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#1484090Answer by Matt Woodward for ColdFusion: Is it safe to leave out the variables keyword in a CFC?Matt Woodward2008-09-29T12:04:25Z2008-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#1483781Answer by Matt Woodward for Resources for getting started with web development?Matt Woodward2008-09-29T11:54:37Z2008-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>