<?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 Heino R. Pull&#039;s Personal Blog</title>
	<atom:link href="http://www.heino.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.heino.com</link>
	<description>Software and Electrical Engineer - Ellisville, Missouri USA</description>
	<lastBuildDate>Wed, 28 Apr 2010 18:21:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Windows Server 2008 IE 8 Hardware DEP Exception After Installing Microsoft Patch KB977724 for Office 2007 by Leah Perez</title>
		<link>http://www.heino.com/?p=960&#038;cpage=1#comment-2158</link>
		<dc:creator>Leah Perez</dc:creator>
		<pubDate>Wed, 28 Apr 2010 18:21:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.heino.com/?p=960#comment-2158</guid>
		<description>Internet Explorer 8 is very good because it is as stable as Opera. I hate the previous versions of IE like IE6 because it hangs frequently.           &#124;</description>
		<content:encoded><![CDATA[<p>Internet Explorer 8 is very good because it is as stable as Opera. I hate the previous versions of IE like IE6 because it hangs frequently.           |</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows Server 2008 IE 8 Hardware DEP Exception After Installing Microsoft Patch KB977724 for Office 2007 by Windows Server 2008 IE 8 Hardware DEP Exception After Installing &#8230; &#124; Windows (7) Affinity</title>
		<link>http://www.heino.com/?p=960&#038;cpage=1#comment-1908</link>
		<dc:creator>Windows Server 2008 IE 8 Hardware DEP Exception After Installing &#8230; &#124; Windows (7) Affinity</dc:creator>
		<pubDate>Thu, 11 Mar 2010 18:19:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.heino.com/?p=960#comment-1908</guid>
		<description>[...] the article here: Windows Server 2008 IE 8 Hardware DEP Exception After Installing &#8230;   No [...]</description>
		<content:encoded><![CDATA[<p>[...] the article here: Windows Server 2008 IE 8 Hardware DEP Exception After Installing &#8230;   No [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Found This Blog Entry: Agile Ajax: Ajax Testing: Doubling Down with Selenium and JMeter by Edward Battuello</title>
		<link>http://www.heino.com/?p=85&#038;cpage=1#comment-1728</link>
		<dc:creator>Edward Battuello</dc:creator>
		<pubDate>Wed, 13 Jan 2010 05:40:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.heino.com/?p=85#comment-1728</guid>
		<description>Good article. I appreciate you for posting that. I hope you can accept my apology for my weak English Skills, I am from Portugal and English is sort of new to me.</description>
		<content:encoded><![CDATA[<p>Good article. I appreciate you for posting that. I hope you can accept my apology for my weak English Skills, I am from Portugal and English is sort of new to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running Selenium RC Automated Tests Automatically Without a Windows Service by Giscard</title>
		<link>http://www.heino.com/?p=123&#038;cpage=1#comment-778</link>
		<dc:creator>Giscard</dc:creator>
		<pubDate>Mon, 01 Dec 2008 11:48:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.heino.com/?p=123#comment-778</guid>
		<description>More detail about the method i described... 

This way i don&#039;t have to worry about killing the right/wrong task, or what other java apps may be running on the same machine. It&#039;s fine with me if i leave that server instance running after my app is done, since that same instance will be around if I run the app again.</description>
		<content:encoded><![CDATA[<p>More detail about the method i described&#8230; </p>
<p>This way i don&#8217;t have to worry about killing the right/wrong task, or what other java apps may be running on the same machine. It&#8217;s fine with me if i leave that server instance running after my app is done, since that same instance will be around if I run the app again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running Selenium RC Automated Tests Automatically Without a Windows Service by Giscard</title>
		<link>http://www.heino.com/?p=123&#038;cpage=1#comment-777</link>
		<dc:creator>Giscard</dc:creator>
		<pubDate>Mon, 01 Dec 2008 11:45:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.heino.com/?p=123#comment-777</guid>
		<description>If you double click the selenium-server.jar file in windows, it will launch a windowless process for selenium server. I use selenium to automate a process right now that runs at regular intervals throughout the day,a nd i need to ensure that the selenium server is running whenever a certain class in my app performs work. Here&#039;s how I&#039;ve solved the problem: 

1. Create a .bat file with &quot;selenium-server.jar&quot; as the only command
2. Constructor of the (C#/.NET2.0) class that needs Selenium executes the .bat file using System.Diagnostics.Process class

After doing this a new java.exe process appears in windows task scheduler. If I run the selenium-server.jar several times, only a single process ever appears in the task list, and if i run from the command prompt using java -jar selenium-server.jar it seems to prevent itself from running if another instance of the server is already running. So I&#039;m assuming that the 2-step method above is only launching a single instance of the server. My app has been running fine like this for almost a year, and the selenium-server.jar and starter .bat file get compiled and deployed with the app as part of the build.</description>
		<content:encoded><![CDATA[<p>If you double click the selenium-server.jar file in windows, it will launch a windowless process for selenium server. I use selenium to automate a process right now that runs at regular intervals throughout the day,a nd i need to ensure that the selenium server is running whenever a certain class in my app performs work. Here&#8217;s how I&#8217;ve solved the problem: </p>
<p>1. Create a .bat file with &#8220;selenium-server.jar&#8221; as the only command<br />
2. Constructor of the (C#/.NET2.0) class that needs Selenium executes the .bat file using System.Diagnostics.Process class</p>
<p>After doing this a new java.exe process appears in windows task scheduler. If I run the selenium-server.jar several times, only a single process ever appears in the task list, and if i run from the command prompt using java -jar selenium-server.jar it seems to prevent itself from running if another instance of the server is already running. So I&#8217;m assuming that the 2-step method above is only launching a single instance of the server. My app has been running fine like this for almost a year, and the selenium-server.jar and starter .bat file get compiled and deployed with the app as part of the build.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LHC Coming On Line &#8211; September 10, 2008 and the LHC Rap by James</title>
		<link>http://www.heino.com/?p=136&#038;cpage=1#comment-567</link>
		<dc:creator>James</dc:creator>
		<pubDate>Fri, 19 Sep 2008 10:55:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.heino.com/?p=136#comment-567</guid>
		<description>Hi, I found your blog on this new directory of WordPress Blogs at blackhatbootcamp.com/listofwordpressblogs.  I dont know how your blog came up, must have been a typo, i duno.  Anyways, I just clicked it and here I am.  Your blog looks good.  Have a nice day.  James.</description>
		<content:encoded><![CDATA[<p>Hi, I found your blog on this new directory of WordPress Blogs at blackhatbootcamp.com/listofwordpressblogs.  I dont know how your blog came up, must have been a typo, i duno.  Anyways, I just clicked it and here I am.  Your blog looks good.  Have a nice day.  James.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Functionality Verification, Regression, Stability, and Load Performance Testing of Ajax Web Sites by Daniel Craig</title>
		<link>http://www.heino.com/?p=36&#038;cpage=1#comment-311</link>
		<dc:creator>Daniel Craig</dc:creator>
		<pubDate>Mon, 14 Jul 2008 16:10:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.heino.com/?p=36#comment-311</guid>
		<description>Hello, I was looking around for a while searching for benchmark tools and I happened upon this site and your post regarding Functionality Verification, Regression, Stability, and Load Performance Testing of Ajax Web Sites, I will definitely this to my benchmark tools bookmarks!</description>
		<content:encoded><![CDATA[<p>Hello, I was looking around for a while searching for benchmark tools and I happened upon this site and your post regarding Functionality Verification, Regression, Stability, and Load Performance Testing of Ajax Web Sites, I will definitely this to my benchmark tools bookmarks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
