<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for thomasknierim.com</title>
	<atom:link href="http://www.thomasknierim.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thomasknierim.com</link>
	<description>software development with Java, Scala, and PHP</description>
	<lastBuildDate>Sun, 24 Jul 2011 13:14:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Database duel – MySQL vs. PostgreSQL by Database Application development</title>
		<link>http://www.thomasknierim.com/24/software-engineering/mysql-vs-postgresql/#comment-2</link>
		<dc:creator>Database Application development</dc:creator>
		<pubDate>Sun, 24 Jul 2011 13:14:39 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/test/wordpress/?p=24#comment-2</guid>
		<description>botha re excellent databases. Mysql is better for Reads than Writes.

Postgresql excels when it comes to reliability more than performance.</description>
		<content:encoded><![CDATA[<p>botha re excellent databases. Mysql is better for Reads than Writes.</p>
<p>Postgresql excels when it comes to reliability more than performance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Performance: Java vs. PHP vs. Scala by Frank</title>
		<link>http://www.thomasknierim.com/119/java/performance-java-vs-php-vs-scala/#comment-48</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Fri, 08 Jul 2011 19:26:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasknierim.com/119/java/performance-java-vs-php-vs-scala/#comment-48</guid>
		<description>Wouldn&#039;t a comparision betwee Java and Quercus or Resin be better, as PHP would be using the JVM then</description>
		<content:encoded><![CDATA[<p>Wouldn&#8217;t a comparision betwee Java and Quercus or Resin be better, as PHP would be using the JVM then</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Scala Currency Class by Marcello Nuccio</title>
		<link>http://www.thomasknierim.com/114/scala/scala-currency-class/#comment-41</link>
		<dc:creator>Marcello Nuccio</dc:creator>
		<pubDate>Thu, 24 Feb 2011 16:24:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasknierim.com/114/scala/scala-currency-class/#comment-41</guid>
		<description>Thanks for this useful code. Is it available on a public repository (e.g. on github?). If not, can I do it?

thanks</description>
		<content:encoded><![CDATA[<p>Thanks for this useful code. Is it available on a public repository (e.g. on github?). If not, can I do it?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Currency Conversion Class by jrtroberts</title>
		<link>http://www.thomasknierim.com/63/java/java-currency-conversion-class/#comment-15</link>
		<dc:creator>jrtroberts</dc:creator>
		<pubDate>Fri, 18 Feb 2011 03:29:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasknierim.com/60/java/java-currency-conversion-class/#comment-15</guid>
		<description>Here is the fix for the code I found that did not work under Linux.

 private void initCacheFile()
    {
        if (cacheFile == null)
        {
            if (cacheFileName == null &#124;&#124; cacheFileName.equals(&quot;&quot;))
            {    /* Old Code that broke under Linux tried to write ExchangeRates.xml to
                  *  /tmpExchangeRates.xml, / is root and app has no permissions to write to root
                  * filename should be /tmp/ExchangeRates.xml under linux.  Note the extra /.
                  *
                  * cacheFileName = System.getProperty(&quot;java.io.tmpdir&quot;)
                  *       + &quot;ExchangeRates.xml&quot;;
                  */

                /*
                 * New code for fix.
                 */
                cacheFile = new File(System.getProperty(&quot;java.io.tmpdir&quot;),&quot;ExchangeRates.xml&quot;);

          }
        }
        cacheFileName = cacheFile.getName();
    }


I also added some extra methods which I have not posted that allow me to get an array of the Exchange Rate values or a single Exchange Rate.

Thanks for the API, it has worked out for me and my project is almost complete.

jrtroberts</description>
		<content:encoded><![CDATA[<p>Here is the fix for the code I found that did not work under Linux.</p>
<p> private void initCacheFile()<br />
    {<br />
        if (cacheFile == null)<br />
        {<br />
            if (cacheFileName == null || cacheFileName.equals(&#8220;&#8221;))<br />
            {    /* Old Code that broke under Linux tried to write ExchangeRates.xml to<br />
                  *  /tmpExchangeRates.xml, / is root and app has no permissions to write to root<br />
                  * filename should be /tmp/ExchangeRates.xml under linux.  Note the extra /.<br />
                  *<br />
                  * cacheFileName = System.getProperty(&#8220;java.io.tmpdir&#8221;)<br />
                  *       + &#8220;ExchangeRates.xml&#8221;;<br />
                  */</p>
<p>                /*<br />
                 * New code for fix.<br />
                 */<br />
                cacheFile = new File(System.getProperty(&#8220;java.io.tmpdir&#8221;),&#8221;ExchangeRates.xml&#8221;);</p>
<p>          }<br />
        }<br />
        cacheFileName = cacheFile.getName();<br />
    }</p>
<p>I also added some extra methods which I have not posted that allow me to get an array of the Exchange Rate values or a single Exchange Rate.</p>
<p>Thanks for the API, it has worked out for me and my project is almost complete.</p>
<p>jrtroberts</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java vs. PHP vs. Scala by abp</title>
		<link>http://www.thomasknierim.com/103/java/java-vs-php-vs-scala/#comment-36</link>
		<dc:creator>abp</dc:creator>
		<pubDate>Fri, 23 Jul 2010 21:50:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasknierim.com/103/java/java-vs-php-vs-scala/#comment-36</guid>
		<description>Hey,

even if you&#039;re now going with Scala, you probably want to have a look at the play framework.

It has Scala support, but stable versions are mainly for Java so far.

If you prefer easy to use and elegant APIs over bloated stuff like JEE(sorry), have a look. :)</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>even if you&#8217;re now going with Scala, you probably want to have a look at the play framework.</p>
<p>It has Scala support, but stable versions are mainly for Java so far.</p>
<p>If you prefer easy to use and elegant APIs over bloated stuff like JEE(sorry), have a look. <img src='http://www.thomasknierim.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSP Nightmares by Mike S.</title>
		<link>http://www.thomasknierim.com/133/java/jsp-nightmares/#comment-50</link>
		<dc:creator>Mike S.</dc:creator>
		<pubDate>Tue, 29 Jun 2010 15:24:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasknierim.com/133/java/jsp-nightmares/#comment-50</guid>
		<description>What Java-friendly alternative would you suggest?  I share your criticisms of JSPs, but haven&#039;t found many Java alternatives that are substantially better.   I&#039;m no expert, though, I&#039;m hoping I missed something good.  Wicket?  Tapestry?</description>
		<content:encoded><![CDATA[<p>What Java-friendly alternative would you suggest?  I share your criticisms of JSPs, but haven&#8217;t found many Java alternatives that are substantially better.   I&#8217;m no expert, though, I&#8217;m hoping I missed something good.  Wicket?  Tapestry?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Serve PHP with Tomcat by Carlos Delfino</title>
		<link>http://www.thomasknierim.com/140/java/serve-php-with-tomcat/#comment-53</link>
		<dc:creator>Carlos Delfino</dc:creator>
		<pubDate>Sun, 13 Jun 2010 11:43:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasknierim.com/140/web-development/serve-php-with-tomcat/#comment-53</guid>
		<description>I have a project that have to link a heavy application in PHP with Java, to run this application it just waits forever the return of the pages in php, I did a test with a simple script and everything is ok, just hangs with very complex scripts . that require calls to several other pages.
What may be happening?
Is there any problem in this format that involves the inclusion of many pages and php classes?
How can I enter debug log in via php code?

Thanks</description>
		<content:encoded><![CDATA[<p>I have a project that have to link a heavy application in PHP with Java, to run this application it just waits forever the return of the pages in php, I did a test with a simple script and everything is ok, just hangs with very complex scripts . that require calls to several other pages.<br />
What may be happening?<br />
Is there any problem in this format that involves the inclusion of many pages and php classes?<br />
How can I enter debug log in via php code?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Serve PHP with Tomcat by thomas</title>
		<link>http://www.thomasknierim.com/140/java/serve-php-with-tomcat/#comment-52</link>
		<dc:creator>thomas</dc:creator>
		<pubDate>Mon, 24 May 2010 02:32:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasknierim.com/140/web-development/serve-php-with-tomcat/#comment-52</guid>
		<description>I am not familiar with easyPHP, but if it contains the fast CGI executable (usually named Php,cgi.exe on Windows) then you should be OK. Regarding MySql: look up the process list to see if you can find the MySql process (mysqld-nt.exe or something similar). If it is not present, it may be necessary to start the server manually or to configure it as a Windows service. Then try to connect to the running server using a client such as mysql.exe command line client. If this works, you can use the various MySql APIs as documented in the PHP manual. For Tomcat, you first need to install the JDBC driver from http://dev.mysql.com/downloads/connector/j/3.1.html and use the JDBC API either directly or use a third-party ORM such as Hibernate.</description>
		<content:encoded><![CDATA[<p>I am not familiar with easyPHP, but if it contains the fast CGI executable (usually named Php,cgi.exe on Windows) then you should be OK. Regarding MySql: look up the process list to see if you can find the MySql process (mysqld-nt.exe or something similar). If it is not present, it may be necessary to start the server manually or to configure it as a Windows service. Then try to connect to the running server using a client such as mysql.exe command line client. If this works, you can use the various MySql APIs as documented in the PHP manual. For Tomcat, you first need to install the JDBC driver from <a href="http://dev.mysql.com/downloads/connector/j/3.1.html" rel="nofollow">http://dev.mysql.com/downloads/connector/j/3.1.html</a> and use the JDBC API either directly or use a third-party ORM such as Hibernate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Serve PHP with Tomcat by Marta Fernandes</title>
		<link>http://www.thomasknierim.com/140/java/serve-php-with-tomcat/#comment-51</link>
		<dc:creator>Marta Fernandes</dc:creator>
		<pubDate>Sun, 23 May 2010 04:34:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasknierim.com/140/web-development/serve-php-with-tomcat/#comment-51</guid>
		<description>I&#039;m running a virtual machine with a wamp installed (easyPHP). Is is possible to use the PHP installation that comes with the wamp with tomcat 6, or do I need a completely separate installation of PHP?
I&#039;d also like to know how I can get MySQL to work with PHP+Tomcat.
Thanks in advance.</description>
		<content:encoded><![CDATA[<p>I&#8217;m running a virtual machine with a wamp installed (easyPHP). Is is possible to use the PHP installation that comes with the wamp with tomcat 6, or do I need a completely separate installation of PHP?<br />
I&#8217;d also like to know how I can get MySQL to work with PHP+Tomcat.<br />
Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java vs. PHP vs. Scala by Pawan</title>
		<link>http://www.thomasknierim.com/103/java/java-vs-php-vs-scala/#comment-35</link>
		<dc:creator>Pawan</dc:creator>
		<pubDate>Sat, 01 May 2010 14:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasknierim.com/103/java/java-vs-php-vs-scala/#comment-35</guid>
		<description>You can use Scala in Tapestry framework. This will give you benefits of both great lang and FW. cheers</description>
		<content:encoded><![CDATA[<p>You can use Scala in Tapestry framework. This will give you benefits of both great lang and FW. cheers</p>
]]></content:encoded>
	</item>
</channel>
</rss>

