<?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"
	>
<channel>
	<title>Comments for Development Art</title>
	<atom:link href="http://www.alvinsingh.org/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alvinsingh.org/blog</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Thu, 20 Nov 2008 20:55:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Comment on Hibernate Query Performance Logging by alvinsingh</title>
		<link>http://www.alvinsingh.org/blog/2008/06/hibernate-query-performance-logging/#comment-74</link>
		<dc:creator>alvinsingh</dc:creator>
		<pubDate>Tue, 18 Nov 2008 13:51:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.alvinsingh.org/blog/?p=8#comment-74</guid>
		<description>Yes it doesn't cover lazy loaded objects since they don't hit your DAOs. They are loaded via Hibernate directly so you maybe be able to use AOP to achieve this.</description>
		<content:encoded><![CDATA[<p>Yes it doesn&#8217;t cover lazy loaded objects since they don&#8217;t hit your DAOs. They are loaded via Hibernate directly so you maybe be able to use AOP to achieve this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hibernate Query Performance Logging by aviad</title>
		<link>http://www.alvinsingh.org/blog/2008/06/hibernate-query-performance-logging/#comment-72</link>
		<dc:creator>aviad</dc:creator>
		<pubDate>Tue, 11 Nov 2008 14:38:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.alvinsingh.org/blog/?p=8#comment-72</guid>
		<description>The idea is nice BUT it doesn't cover the cases of lazily loaded objects.
If any one has an idea that will take care of this as well it would be great</description>
		<content:encoded><![CDATA[<p>The idea is nice BUT it doesn&#8217;t cover the cases of lazily loaded objects.<br />
If any one has an idea that will take care of this as well it would be great</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What&#8217;s wrong with current web testing approaches by Nat</title>
		<link>http://www.alvinsingh.org/blog/2008/09/whats-wrong-with-current-web-testing-approaches/#comment-71</link>
		<dc:creator>Nat</dc:creator>
		<pubDate>Tue, 11 Nov 2008 14:18:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.alvinsingh.org/blog/?p=10#comment-71</guid>
		<description>Windowlicker can now test web GUIs as well as Swing GUIs.</description>
		<content:encoded><![CDATA[<p>Windowlicker can now test web GUIs as well as Swing GUIs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automate Website Testing with Selenium RC by Ruchi</title>
		<link>http://www.alvinsingh.org/blog/2008/05/automate-website-testing-with-selenium-rc/#comment-70</link>
		<dc:creator>Ruchi</dc:creator>
		<pubDate>Thu, 06 Nov 2008 23:22:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.alvinsingh.org/blog/?p=3#comment-70</guid>
		<description>I am also having the same issue as Chetan.. I am not able to run the test as I don't see anything on Run Dialog window. Do we need to add any jar to our classpath? is there any change that needs to be done in Preferences?</description>
		<content:encoded><![CDATA[<p>I am also having the same issue as Chetan.. I am not able to run the test as I don&#8217;t see anything on Run Dialog window. Do we need to add any jar to our classpath? is there any change that needs to be done in Preferences?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hibernate Query Performance Logging by Agnija</title>
		<link>http://www.alvinsingh.org/blog/2008/06/hibernate-query-performance-logging/#comment-69</link>
		<dc:creator>Agnija</dc:creator>
		<pubDate>Thu, 06 Nov 2008 03:36:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.alvinsingh.org/blog/?p=8#comment-69</guid>
		<description>It has long been looking for this information, Thank you for your work.</description>
		<content:encoded><![CDATA[<p>It has long been looking for this information, Thank you for your work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hibernate Query Performance Logging by Sergey</title>
		<link>http://www.alvinsingh.org/blog/2008/06/hibernate-query-performance-logging/#comment-68</link>
		<dc:creator>Sergey</dc:creator>
		<pubDate>Wed, 05 Nov 2008 13:44:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.alvinsingh.org/blog/?p=8#comment-68</guid>
		<description>Thanks a lot! Very usefull article.

About logging Hibernate queries with params, here my log4J config. Try to use it.

###  Hibernate logging configuration  ###

### Log everything (a lot of information, but very useful for troubleshooting) ###
#log4j.logger.org.hibernate=info

### Log HQL and SQL ASTs during query parsing ###
log4j.logger.org.hibernate.hql.ast.AST=DEBUG, SQL_APPENDER
log4j.additivity.org.hibernate.hql.ast.AST=false

### log just the SQL
log4j.logger.org.hibernate.SQL=DEBUG, SQL_APPENDER
log4j.additivity.org.hibernate.SQL=false

### log JDBC bind parameters. Very userfull, when debug parameterized queries ###
log4j.logger.org.hibernate.type=TRACE, SQL_APPENDER
log4j.additivity.org.hibernate.type=false

### log schema export/update ###
#log4j.logger.org.hibernate.tool.hbm2ddl=info

### log HQL parse trees
#log4j.logger.org.hibernate.hql=debug

### log cache activity ###
#log4j.logger.org.hibernate.cache=info

### log transaction activity
#log4j.logger.org.hibernate.transaction=debug

### Log all JDBC resource acquisition
#log4j.logger.org.hibernate.jdbc=debug

### enable the following line if you want to track down connection ###
### leakages when using DriverManagerConnectionProvider ###
#log4j.logger.org.hibernate.connection.DriverManagerConnectionProvider=trace

log4j.appender.SQL_APPENDER=org.apache.log4j.RollingFileAppender
log4j.appender.SQL_APPENDER.File=${applicationRoot}/log/sql.log
log4j.appender.SQL_APPENDER.MaxFileSize=1000KB
log4j.appender.SQL_APPENDER.MaxBackupIndex=62
log4j.appender.SQL_APPENDER.layout=org.apache.log4j.PatternLayout
log4j.appender.SQL_APPENDER.layout.ConversionPattern=[%d] %5p [%t] (%F:%L) - %m%n</description>
		<content:encoded><![CDATA[<p>Thanks a lot! Very usefull article.</p>
<p>About logging Hibernate queries with params, here my log4J config. Try to use it.</p>
<p>###  Hibernate logging configuration  ###</p>
<p>### Log everything (a lot of information, but very useful for troubleshooting) ###<br />
#log4j.logger.org.hibernate=info</p>
<p>### Log HQL and SQL ASTs during query parsing ###<br />
log4j.logger.org.hibernate.hql.ast.AST=DEBUG, SQL_APPENDER<br />
log4j.additivity.org.hibernate.hql.ast.AST=false</p>
<p>### log just the SQL<br />
log4j.logger.org.hibernate.SQL=DEBUG, SQL_APPENDER<br />
log4j.additivity.org.hibernate.SQL=false</p>
<p>### log JDBC bind parameters. Very userfull, when debug parameterized queries ###<br />
log4j.logger.org.hibernate.type=TRACE, SQL_APPENDER<br />
log4j.additivity.org.hibernate.type=false</p>
<p>### log schema export/update ###<br />
#log4j.logger.org.hibernate.tool.hbm2ddl=info</p>
<p>### log HQL parse trees<br />
#log4j.logger.org.hibernate.hql=debug</p>
<p>### log cache activity ###<br />
#log4j.logger.org.hibernate.cache=info</p>
<p>### log transaction activity<br />
#log4j.logger.org.hibernate.transaction=debug</p>
<p>### Log all JDBC resource acquisition<br />
#log4j.logger.org.hibernate.jdbc=debug</p>
<p>### enable the following line if you want to track down connection ###<br />
### leakages when using DriverManagerConnectionProvider ###<br />
#log4j.logger.org.hibernate.connection.DriverManagerConnectionProvider=trace</p>
<p>log4j.appender.SQL_APPENDER=org.apache.log4j.RollingFileAppender<br />
log4j.appender.SQL_APPENDER.File=${applicationRoot}/log/sql.log<br />
log4j.appender.SQL_APPENDER.MaxFileSize=1000KB<br />
log4j.appender.SQL_APPENDER.MaxBackupIndex=62<br />
log4j.appender.SQL_APPENDER.layout=org.apache.log4j.PatternLayout<br />
log4j.appender.SQL_APPENDER.layout.ConversionPattern=[%d] %5p [%t] (%F:%L) - %m%n</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automate Website Testing with Selenium RC by websurfer</title>
		<link>http://www.alvinsingh.org/blog/2008/05/automate-website-testing-with-selenium-rc/#comment-67</link>
		<dc:creator>websurfer</dc:creator>
		<pubDate>Tue, 04 Nov 2008 21:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.alvinsingh.org/blog/?p=3#comment-67</guid>
		<description>Thankyou for this posting - it was helpful - especially the waitForElement method in the Setup class.</description>
		<content:encoded><![CDATA[<p>Thankyou for this posting - it was helpful - especially the waitForElement method in the Setup class.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hibernate Query Performance Logging by Lonely8 &#187; Blog Archive &#187; Hibernate Query Performance Logging</title>
		<link>http://www.alvinsingh.org/blog/2008/06/hibernate-query-performance-logging/#comment-66</link>
		<dc:creator>Lonely8 &#187; Blog Archive &#187; Hibernate Query Performance Logging</dc:creator>
		<pubDate>Sat, 18 Oct 2008 12:01:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.alvinsingh.org/blog/?p=8#comment-66</guid>
		<description>[...] view plaincopy to clipboardprint? [...]</description>
		<content:encoded><![CDATA[<p>[...] view plaincopy to clipboardprint? [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What&#8217;s wrong with current web testing approaches by Stuart Ervine</title>
		<link>http://www.alvinsingh.org/blog/2008/09/whats-wrong-with-current-web-testing-approaches/#comment-65</link>
		<dc:creator>Stuart Ervine</dc:creator>
		<pubDate>Fri, 03 Oct 2008 05:34:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.alvinsingh.org/blog/?p=10#comment-65</guid>
		<description>I'd highly recommend using PageObjects, PageDrivers or PageControllers (the many names I've seen them called). I've used them on numerous projects for a while now, and they make writing tests very simple indeed.

Check out http://www.jroller.com/ervines/entry/readable_tests for my early take on the approach.
Also if you do any Swing development, check out http://code.google.com/p/windowlicker or the netbeans project Jemmy, for similar tools to Selenium for Swing apps.</description>
		<content:encoded><![CDATA[<p>I&#8217;d highly recommend using PageObjects, PageDrivers or PageControllers (the many names I&#8217;ve seen them called). I&#8217;ve used them on numerous projects for a while now, and they make writing tests very simple indeed.</p>
<p>Check out <a href="http://www.jroller.com/ervines/entry/readable_tests" rel="nofollow">http://www.jroller.com/ervines/entry/readable_tests</a> for my early take on the approach.<br />
Also if you do any Swing development, check out <a href="http://code.google.com/p/windowlicker" rel="nofollow">http://code.google.com/p/windowlicker</a> or the netbeans project Jemmy, for similar tools to Selenium for Swing apps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automate Website Testing with Selenium RC by Diogo</title>
		<link>http://www.alvinsingh.org/blog/2008/05/automate-website-testing-with-selenium-rc/#comment-64</link>
		<dc:creator>Diogo</dc:creator>
		<pubDate>Wed, 01 Oct 2008 10:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.alvinsingh.org/blog/?p=3#comment-64</guid>
		<description>&lt;a href="http://www.diogocatapreta.com.br" rel="nofollow"&gt;Congratulations. 
Thank you for such a helpful site.&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p><a href="http://www.diogocatapreta.com.br" rel="nofollow">Congratulations.<br />
Thank you for such a helpful site.</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
