<?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 Finite Epiphany</title>
	<atom:link href="http://finite.mikeandcorinne.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://finite.mikeandcorinne.com</link>
	<description>Mike&#039;s thoughts on programming and tech</description>
	<lastBuildDate>Tue, 16 Mar 2010 23:25:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on C# &#8211; &#8220;Type is not resolved for member&#8221; SerializationException in Connection.get_LocalIP() RESOLVED! by jmorris</title>
		<link>http://finite.mikeandcorinne.com/2010/03/c-type-is-not-resolved-for-member-serializationexception-in-connection-get_localip-resolved/comment-page-1/#comment-15</link>
		<dc:creator>jmorris</dc:creator>
		<pubDate>Tue, 16 Mar 2010 23:25:13 +0000</pubDate>
		<guid isPermaLink="false">http://finite.mikeandcorinne.com/2010/03/c-type-is-not-resolved-for-member-serializationexception-in-connection-get_localip-resolved/#comment-15</guid>
		<description>Funny, I just ran into this. It actually happens when you assign the IPrincipal implementation to the Thread.CurrentPrincipal property. Setting the Context.User field is fine, however. It also only failed in my case when I called the Page.ClientScript.GetCallbackEventReference method!

I tried your suggestion with the ComVisible and deriving from MarshalByRefObject and then ran into trouble with serialization/deserialization using the DataContractJsonSerializer. I stopped short there and just removed the Thread.CurrentPrincipal = principal code, since this is a cassini specific error and I&#039;ll be on IIS next week. 

-Jeff</description>
		<content:encoded><![CDATA[<p>Funny, I just ran into this. It actually happens when you assign the IPrincipal implementation to the Thread.CurrentPrincipal property. Setting the Context.User field is fine, however. It also only failed in my case when I called the Page.ClientScript.GetCallbackEventReference method!</p>
<p>I tried your suggestion with the ComVisible and deriving from MarshalByRefObject and then ran into trouble with serialization/deserialization using the DataContractJsonSerializer. I stopped short there and just removed the Thread.CurrentPrincipal = principal code, since this is a cassini specific error and I&#8217;ll be on IIS next week. </p>
<p>-Jeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on /console for Remote Desktop fails in Windows XP Service Pack 3 RC2 by Kami</title>
		<link>http://finite.mikeandcorinne.com/2008/03/console-for-remote-desktop-fails-in-windows-xp-service-pack-3-rc2/comment-page-1/#comment-12</link>
		<dc:creator>Kami</dc:creator>
		<pubDate>Wed, 27 Aug 2008 11:47:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeandcorinne.com/finite/2008/03/08/console-for-remote-desktop-fails-in-windows-xp-service-pack-3-rc2/#comment-12</guid>
		<description>Using

mstsc /admin

instead of /console works.  It will allow you to connect to the existing console session.  Annoying that MS in their infinite wisdom changed it.</description>
		<content:encoded><![CDATA[<p>Using</p>
<p>mstsc /admin</p>
<p>instead of /console works.  It will allow you to connect to the existing console session.  Annoying that MS in their infinite wisdom changed it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on An indexed foreach for .aspx Web Forms by jimi</title>
		<link>http://finite.mikeandcorinne.com/2008/03/an-indexed-foreach-for-aspx-web-forms/comment-page-1/#comment-13</link>
		<dc:creator>jimi</dc:creator>
		<pubDate>Wed, 25 Jun 2008 09:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeandcorinne.com/finite/2008/03/11/an-indexed-foreach-for-aspx-web-forms/#comment-13</guid>
		<description>Hi there - stumbled across this while looking for something totally unrelated to the above post. however, it caught my interest as i too &#039;loathe&#039; putting in repeaters (or any &#039;logic&#039; for that matter) in the aspx page. however, i had an issue in being able to use the code as i&#039;m not sure of the namespaces required to make all of this work. Here&#039;s the code that i pasted into a default blank default.aspx.cs page:

        protected void Foreach(IEnumerable enumerable, Proc action)
        {
            int i = 0;
            foreach(T t in enumerable)
            {
                action(t, i);
                i++;
            }
        }

(i had to add the colon after i++;). however, it still tells me that it &#039;wants&#039; an assembly for this to work. please tell this idiot what he&#039;s missing :)

thanks - btw, some great photos too!!!</description>
		<content:encoded><![CDATA[<p>Hi there &#8211; stumbled across this while looking for something totally unrelated to the above post. however, it caught my interest as i too &#8216;loathe&#8217; putting in repeaters (or any &#8216;logic&#8217; for that matter) in the aspx page. however, i had an issue in being able to use the code as i&#8217;m not sure of the namespaces required to make all of this work. Here&#8217;s the code that i pasted into a default blank default.aspx.cs page:</p>
<p>        protected void Foreach(IEnumerable enumerable, Proc action)<br />
        {<br />
            int i = 0;<br />
            foreach(T t in enumerable)<br />
            {<br />
                action(t, i);<br />
                i++;<br />
            }<br />
        }</p>
<p>(i had to add the colon after i++;). however, it still tells me that it &#8216;wants&#8217; an assembly for this to work. please tell this idiot what he&#8217;s missing <img src='http://finite.mikeandcorinne.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>thanks &#8211; btw, some great photos too!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on /console for Remote Desktop fails in Windows XP Service Pack 3 RC2 by Hawk</title>
		<link>http://finite.mikeandcorinne.com/2008/03/console-for-remote-desktop-fails-in-windows-xp-service-pack-3-rc2/comment-page-1/#comment-11</link>
		<dc:creator>Hawk</dc:creator>
		<pubDate>Thu, 22 May 2008 15:40:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeandcorinne.com/finite/2008/03/08/console-for-remote-desktop-fails-in-windows-xp-service-pack-3-rc2/#comment-11</guid>
		<description>Ditto to what Mike Says is saying.  We are experiencing the same issue.  Using Remote Desktops from the Windows 2003 R2 admin pak we are NOT connecting to the console session of our servers despite the box being checked.  We also use Real VNC as another way of managing our servers so this appears to be the only way we can connect to the console.  It seems the issue began when we upgraded to SP3 on our workstations.  However, the same issue occurs when running remote desktops from my Vista x64 workstation with the admin pak r2 installed.</description>
		<content:encoded><![CDATA[<p>Ditto to what Mike Says is saying.  We are experiencing the same issue.  Using Remote Desktops from the Windows 2003 R2 admin pak we are NOT connecting to the console session of our servers despite the box being checked.  We also use Real VNC as another way of managing our servers so this appears to be the only way we can connect to the console.  It seems the issue began when we upgraded to SP3 on our workstations.  However, the same issue occurs when running remote desktops from my Vista x64 workstation with the admin pak r2 installed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on /console for Remote Desktop fails in Windows XP Service Pack 3 RC2 by Mike</title>
		<link>http://finite.mikeandcorinne.com/2008/03/console-for-remote-desktop-fails-in-windows-xp-service-pack-3-rc2/comment-page-1/#comment-10</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 12 May 2008 07:03:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeandcorinne.com/finite/2008/03/08/console-for-remote-desktop-fails-in-windows-xp-service-pack-3-rc2/#comment-10</guid>
		<description>Sorry... I meant I cannot connect myself directly to console but it always create new sessions.</description>
		<content:encoded><![CDATA[<p>Sorry&#8230; I meant I cannot connect myself directly to console but it always create new sessions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on /console for Remote Desktop fails in Windows XP Service Pack 3 RC2 by Mike</title>
		<link>http://finite.mikeandcorinne.com/2008/03/console-for-remote-desktop-fails-in-windows-xp-service-pack-3-rc2/comment-page-1/#comment-9</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 12 May 2008 07:01:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeandcorinne.com/finite/2008/03/08/console-for-remote-desktop-fails-in-windows-xp-service-pack-3-rc2/#comment-9</guid>
		<description>Hi there.

I have an issue I cannot solve. I have previosuly installed Admin Pack from MS win Server 03, where I use Remote Desktops. After installation of SP3, I&#039;m unable to connect myself to any of my servers on the list, despite that checkbox is enable for console.

Is there any solution out yet?

Thank You,
Best Regards</description>
		<content:encoded><![CDATA[<p>Hi there.</p>
<p>I have an issue I cannot solve. I have previosuly installed Admin Pack from MS win Server 03, where I use Remote Desktops. After installation of SP3, I&#8217;m unable to connect myself to any of my servers on the list, despite that checkbox is enable for console.</p>
<p>Is there any solution out yet?</p>
<p>Thank You,<br />
Best Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on /console for Remote Desktop fails in Windows XP Service Pack 3 RC2 by Joe</title>
		<link>http://finite.mikeandcorinne.com/2008/03/console-for-remote-desktop-fails-in-windows-xp-service-pack-3-rc2/comment-page-1/#comment-8</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Thu, 01 May 2008 23:50:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeandcorinne.com/finite/2008/03/08/console-for-remote-desktop-fails-in-windows-xp-service-pack-3-rc2/#comment-8</guid>
		<description>For XP SP3 you have to use /admin</description>
		<content:encoded><![CDATA[<p>For XP SP3 you have to use /admin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on /console for Remote Desktop fails in Windows XP Service Pack 3 RC2 by Me</title>
		<link>http://finite.mikeandcorinne.com/2008/03/console-for-remote-desktop-fails-in-windows-xp-service-pack-3-rc2/comment-page-1/#comment-7</link>
		<dc:creator>Me</dc:creator>
		<pubDate>Mon, 28 Apr 2008 10:48:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeandcorinne.com/finite/2008/03/08/console-for-remote-desktop-fails-in-windows-xp-service-pack-3-rc2/#comment-7</guid>
		<description>Use /ADMIN</description>
		<content:encoded><![CDATA[<p>Use /ADMIN</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Computer Science Research and Software Development(Engineering) by Mom</title>
		<link>http://finite.mikeandcorinne.com/2008/03/computer-science-research-and-software-developmentengineering/comment-page-1/#comment-14</link>
		<dc:creator>Mom</dc:creator>
		<pubDate>Mon, 07 Apr 2008 00:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeandcorinne.com/finite/?p=28#comment-14</guid>
		<description>Hi Mike--After thoroughly analyzing your data and thoughts on the subject of BDD and TDD.  Well sort of, anyway, I am proud to say----that&#039;s my boy!!!  :)</description>
		<content:encoded><![CDATA[<p>Hi Mike&#8211;After thoroughly analyzing your data and thoughts on the subject of BDD and TDD.  Well sort of, anyway, I am proud to say&#8212;-that&#8217;s my boy!!!  <img src='http://finite.mikeandcorinne.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IEBlog : Microsoft&#039;s Interoperability Principles and IE8 by daniel ebling</title>
		<link>http://finite.mikeandcorinne.com/2008/03/ieblog-microsofts-interoperability-principles-and-ie8/comment-page-1/#comment-6</link>
		<dc:creator>daniel ebling</dc:creator>
		<pubDate>Tue, 18 Mar 2008 14:05:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeandcorinne.com/finite/2008/03/03/ieblog-microsofts-interoperability-principles-and-ie8/#comment-6</guid>
		<description>lol</description>
		<content:encoded><![CDATA[<p>lol</p>
]]></content:encoded>
	</item>
</channel>
</rss>
