<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments for Kris Kemper</title>
	<link>http://blog.kriskemper.com</link>
	<description>Thoughtworker, Agile Philosopher, Hero</description>
	<pubDate>Fri, 10 Sep 2010 13:34:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
		<item>
		<title>Comment on Error 51: Unable to communicate with the VPN subsystem by B Campbell</title>
		<link>http://blog.kriskemper.com/2009/10/06/error-51-unable-to-communicate-with-the-vpn-subsystem/#comment-13729</link>
		<dc:creator>B Campbell</dc:creator>
		<pubDate>Fri, 03 Sep 2010 14:38:21 +0000</pubDate>
		<guid>http://blog.kriskemper.com/2009/10/06/error-51-unable-to-communicate-with-the-vpn-subsystem/#comment-13729</guid>
		<description>This is what worked for me when I had this error:
http://forum.maas360.com/go/mobileitexpertise/fix-for-cisco-vpn-error-51-unable-to-communicate-with-the-vpn-subsystem/</description>
		<content:encoded><![CDATA[<p>This is what worked for me when I had this error:<br />
<a href="http://forum.maas360.com/go/mobileitexpertise/fix-for-cisco-vpn-error-51-unable-to-communicate-with-the-vpn-subsystem/" onclick="javascript:pageTracker._trackPageview('/outbound/comment/http://forum.maas360.com/go/mobileitexpertise/fix-for-cisco-vpn-error-51-unable-to-communicate-with-the-vpn-subsystem/');" rel="nofollow">http://forum.maas360.com/go/mobileitexpertise/fix-for-cisco-vpn-error-51-unable-to-communicate-with-the-vpn-subsystem/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error 51: Unable to communicate with the VPN subsystem by voice vpn</title>
		<link>http://blog.kriskemper.com/2009/10/06/error-51-unable-to-communicate-with-the-vpn-subsystem/#comment-13494</link>
		<dc:creator>voice vpn</dc:creator>
		<pubDate>Fri, 27 Aug 2010 15:01:45 +0000</pubDate>
		<guid>http://blog.kriskemper.com/2009/10/06/error-51-unable-to-communicate-with-the-vpn-subsystem/#comment-13494</guid>
		<description>If you're using Cisco VPN client, then VPN error 412 is usually transport settings, although it can be other things.  Try clearing the cached password (if it is VPN Client) first.  If that doesn't help, then change the transport settings from UDP to TCP or vice versa.  Make sure that your VPN connection is set up correctly with the server and such.</description>
		<content:encoded><![CDATA[<p>If you&#8217;re using Cisco VPN client, then VPN error 412 is usually transport settings, although it can be other things.  Try clearing the cached password (if it is VPN Client) first.  If that doesn&#8217;t help, then change the transport settings from UDP to TCP or vice versa.  Make sure that your VPN connection is set up correctly with the server and such.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some tips on The Thoughtworks Interview Process by Ajith Joseph</title>
		<link>http://blog.kriskemper.com/2009/03/20/some-tips-on-the-thoughtworks-interview-process/#comment-11370</link>
		<dc:creator>Ajith Joseph</dc:creator>
		<pubDate>Fri, 14 May 2010 06:59:15 +0000</pubDate>
		<guid>http://blog.kriskemper.com/2009/03/20/some-tips-on-the-thoughtworks-interview-process/#comment-11370</guid>
		<description>Yeah, one who would like to cruise thier career track in a fast pace can always consider ThoughWorks as a choice. Sure working with a company like TW will be fun too.</description>
		<content:encoded><![CDATA[<p>Yeah, one who would like to cruise thier career track in a fast pace can always consider ThoughWorks as a choice. Sure working with a company like TW will be fun too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error 51: Unable to communicate with the VPN subsystem by Kris Kemper</title>
		<link>http://blog.kriskemper.com/2009/10/06/error-51-unable-to-communicate-with-the-vpn-subsystem/#comment-11109</link>
		<dc:creator>Kris Kemper</dc:creator>
		<pubDate>Mon, 26 Apr 2010 02:26:29 +0000</pubDate>
		<guid>http://blog.kriskemper.com/2009/10/06/error-51-unable-to-communicate-with-the-vpn-subsystem/#comment-11109</guid>
		<description>I've found this to be a somewhat short term fix. From time to time, the problem comes back and I have to do the steps again.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve found this to be a somewhat short term fix. From time to time, the problem comes back and I have to do the steps again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting rid of switch statements with Java Enums by Jonathan Marler</title>
		<link>http://blog.kriskemper.com/2008/10/19/getting-rid-of-switch-statements-with-java-enums/#comment-10874</link>
		<dc:creator>Jonathan Marler</dc:creator>
		<pubDate>Thu, 15 Apr 2010 21:04:17 +0000</pubDate>
		<guid>http://blog.kriskemper.com/2008/10/19/getting-rid-of-switch-statements-with-java-enums/#comment-10874</guid>
		<description>Very useful, a great natural design for using enums.

Also, this is not a big deal, but in order to compile your example I had to add a semi-colon at the end of line 7. 

1.enum Friend {
2.    Joey {
3.        Friend bestFriend() { return Chandler; }
4.    },
5.    Chandler {
6.        Friend bestFriend() { return Joey; }
7.    }
8.    abstract Friend bestFriend();
9.}</description>
		<content:encoded><![CDATA[<p>Very useful, a great natural design for using enums.</p>
<p>Also, this is not a big deal, but in order to compile your example I had to add a semi-colon at the end of line 7. </p>
<p>1.enum Friend {<br />
2.    Joey {<br />
3.        Friend bestFriend() { return Chandler; }<br />
4.    },<br />
5.    Chandler {<br />
6.        Friend bestFriend() { return Joey; }<br />
7.    }<br />
8.    abstract Friend bestFriend();<br />
9.}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some tips on The Thoughtworks Interview Process by Roger</title>
		<link>http://blog.kriskemper.com/2009/03/20/some-tips-on-the-thoughtworks-interview-process/#comment-10808</link>
		<dc:creator>Roger</dc:creator>
		<pubDate>Sat, 10 Apr 2010 20:34:26 +0000</pubDate>
		<guid>http://blog.kriskemper.com/2009/03/20/some-tips-on-the-thoughtworks-interview-process/#comment-10808</guid>
		<description>I second Sathish's request. Chirantan If you can, email me  or post here a list of the books they gave you after the interview.

rsmaniak@gmail.com

Thanks!</description>
		<content:encoded><![CDATA[<p>I second Sathish&#8217;s request. Chirantan If you can, email me  or post here a list of the books they gave you after the interview.</p>
<p><a href="mailto:rsmaniak@gmail.com">rsmaniak@gmail.com</a></p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some tips on The Thoughtworks Interview Process by Sathish</title>
		<link>http://blog.kriskemper.com/2009/03/20/some-tips-on-the-thoughtworks-interview-process/#comment-10700</link>
		<dc:creator>Sathish</dc:creator>
		<pubDate>Fri, 02 Apr 2010 15:51:34 +0000</pubDate>
		<guid>http://blog.kriskemper.com/2009/03/20/some-tips-on-the-thoughtworks-interview-process/#comment-10700</guid>
		<description>Hi Chirantan,

You have mentioned that thoughtworks has given some books to refer. can u please post those books name in this blog or can u pls mail me those to sathish.infotech@gmail.com. It will be very much helpful for me. 

Thanx a lot.....</description>
		<content:encoded><![CDATA[<p>Hi Chirantan,</p>
<p>You have mentioned that thoughtworks has given some books to refer. can u please post those books name in this blog or can u pls mail me those to <a href="mailto:sathish.infotech@gmail.com">sathish.infotech@gmail.com</a>. It will be very much helpful for me. </p>
<p>Thanx a lot&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error 51: Unable to communicate with the VPN subsystem by David Greenberg</title>
		<link>http://blog.kriskemper.com/2009/10/06/error-51-unable-to-communicate-with-the-vpn-subsystem/#comment-9959</link>
		<dc:creator>David Greenberg</dc:creator>
		<pubDate>Fri, 22 Jan 2010 16:51:51 +0000</pubDate>
		<guid>http://blog.kriskemper.com/2009/10/06/error-51-unable-to-communicate-with-the-vpn-subsystem/#comment-9959</guid>
		<description>Thanks, Kris. I tried a lot of other Terminal stuff, but only your fix worked for me.

David</description>
		<content:encoded><![CDATA[<p>Thanks, Kris. I tried a lot of other Terminal stuff, but only your fix worked for me.</p>
<p>David</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error 51: Unable to communicate with the VPN subsystem by Kris Kemper</title>
		<link>http://blog.kriskemper.com/2009/10/06/error-51-unable-to-communicate-with-the-vpn-subsystem/#comment-8034</link>
		<dc:creator>Kris Kemper</dc:creator>
		<pubDate>Tue, 20 Oct 2009 03:07:59 +0000</pubDate>
		<guid>http://blog.kriskemper.com/2009/10/06/error-51-unable-to-communicate-with-the-vpn-subsystem/#comment-8034</guid>
		<description>Glad I could help.</description>
		<content:encoded><![CDATA[<p>Glad I could help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error 51: Unable to communicate with the VPN subsystem by Rob Raymond</title>
		<link>http://blog.kriskemper.com/2009/10/06/error-51-unable-to-communicate-with-the-vpn-subsystem/#comment-8033</link>
		<dc:creator>Rob Raymond</dc:creator>
		<pubDate>Tue, 20 Oct 2009 02:05:17 +0000</pubDate>
		<guid>http://blog.kriskemper.com/2009/10/06/error-51-unable-to-communicate-with-the-vpn-subsystem/#comment-8033</guid>
		<description>Thank you so much for posting this, it worked like a charm!</description>
		<content:encoded><![CDATA[<p>Thank you so much for posting this, it worked like a charm!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
