<?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 Into the cloud</title>
	<atom:link href="http://www.intothecloud.nl/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.intothecloud.nl</link>
	<description>Programming my way into the cloud</description>
	<lastBuildDate>Fri, 17 Feb 2012 12:00:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Saving JQGrid parameters in cookie by Nisha</title>
		<link>http://www.intothecloud.nl/index.php/2010/04/saving-jqgrid-parameters-in-cookie/comment-page-1/#comment-9686</link>
		<dc:creator>Nisha</dc:creator>
		<pubDate>Fri, 17 Feb 2012 12:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.intothecloud.nl/?p=94#comment-9686</guid>
		<description>Hi all,
    I tried this code.I saved successfully and also i retrieve the values,But my grid won&#039;t display the values according to values from cookie. if anybody can help me?</description>
		<content:encoded><![CDATA[<p>Hi all,<br />
    I tried this code.I saved successfully and also i retrieve the values,But my grid won&#8217;t display the values according to values from cookie. if anybody can help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Saving JQGrid parameters in cookie by Michiel</title>
		<link>http://www.intothecloud.nl/index.php/2010/04/saving-jqgrid-parameters-in-cookie/comment-page-1/#comment-1972</link>
		<dc:creator>Michiel</dc:creator>
		<pubDate>Sat, 23 Apr 2011 11:57:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.intothecloud.nl/?p=94#comment-1972</guid>
		<description>Yes, you are right. You will have to tweak the javascript for this. We currently dont use this control anymore, so I dont know if is this a correct solution anymore.</description>
		<content:encoded><![CDATA[<p>Yes, you are right. You will have to tweak the javascript for this. We currently dont use this control anymore, so I dont know if is this a correct solution anymore.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Saving JQGrid parameters in cookie by Sergey</title>
		<link>http://www.intothecloud.nl/index.php/2010/04/saving-jqgrid-parameters-in-cookie/comment-page-1/#comment-1853</link>
		<dc:creator>Sergey</dc:creator>
		<pubDate>Sat, 16 Apr 2011 07:46:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.intothecloud.nl/?p=94#comment-1853</guid>
		<description>So it means grid will be loaded twice every time - with server default and new setted parameters, huh?</description>
		<content:encoded><![CDATA[<p>So it means grid will be loaded twice every time &#8211; with server default and new setted parameters, huh?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Saving JQGrid parameters in cookie by Luke</title>
		<link>http://www.intothecloud.nl/index.php/2010/04/saving-jqgrid-parameters-in-cookie/comment-page-1/#comment-804</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Thu, 21 Oct 2010 06:44:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.intothecloud.nl/?p=94#comment-804</guid>
		<description>exactly what I was looking for, you are a life saver mate.</description>
		<content:encoded><![CDATA[<p>exactly what I was looking for, you are a life saver mate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Handling the The remote certificate is invalid according to the validation procedure exception by Aidan</title>
		<link>http://www.intothecloud.nl/index.php/2010/04/handling-the-the-remote-certificate-is-invalid-according-to-the-validation-procedure-exception/comment-page-1/#comment-340</link>
		<dc:creator>Aidan</dc:creator>
		<pubDate>Mon, 02 Aug 2010 15:06:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.intothecloud.nl/?p=80#comment-340</guid>
		<description>Hi Micheil,

Thanks for posting this - it&#039;s been very useful as a starting point to working out why our client isn&#039;t accepting the the server&#039;s certificate. 

I added some diagnostic code to the method body to come up with this:

                ServicePointManager.ServerCertificateValidationCallback = delegate( object source, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors )
                {
                    if( &quot;None&quot; == sslPolicyErrors.ToString() ) return true;

                    txtOutput.AppendText(&quot;ServerCertificateValidation failed with error: &quot; + sslPolicyErrors + &quot;\r\n&quot;);
                    foreach( X509ChainElement cert in chain.ChainElements )
                    {
                        txtOutput.AppendText( cert.Certificate.SubjectName.Name+&quot;\r\n&quot; );
                        foreach( X509ChainStatus status in cert.ChainElementStatus )
                            txtOutput.AppendText( &quot;\t&quot; + status.Status + &quot;\r\n&quot; );
                    }
                    return true;
                };</description>
		<content:encoded><![CDATA[<p>Hi Micheil,</p>
<p>Thanks for posting this &#8211; it&#8217;s been very useful as a starting point to working out why our client isn&#8217;t accepting the the server&#8217;s certificate. </p>
<p>I added some diagnostic code to the method body to come up with this:</p>
<p>                ServicePointManager.ServerCertificateValidationCallback = delegate( object source, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors )<br />
                {<br />
                    if( &#8220;None&#8221; == sslPolicyErrors.ToString() ) return true;</p>
<p>                    txtOutput.AppendText(&#8220;ServerCertificateValidation failed with error: &#8221; + sslPolicyErrors + &#8220;\r\n&#8221;);<br />
                    foreach( X509ChainElement cert in chain.ChainElements )<br />
                    {<br />
                        txtOutput.AppendText( cert.Certificate.SubjectName.Name+&#8221;\r\n&#8221; );<br />
                        foreach( X509ChainStatus status in cert.ChainElementStatus )<br />
                            txtOutput.AppendText( &#8220;\t&#8221; + status.Status + &#8220;\r\n&#8221; );<br />
                    }<br />
                    return true;<br />
                };</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Use action filter to fill in parameters by Tweets die vermelden Use action filter to fill in parameters « Into the cloud -- Topsy.com</title>
		<link>http://www.intothecloud.nl/index.php/2010/04/use-action-filter-to-fill-in-parameters/comment-page-1/#comment-12</link>
		<dc:creator>Tweets die vermelden Use action filter to fill in parameters « Into the cloud -- Topsy.com</dc:creator>
		<pubDate>Mon, 05 Apr 2010 20:59:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.intothecloud.nl/?p=43#comment-12</guid>
		<description>[...] Dit blogartikel was vermeld op Twitter door Joachim Farla [MVP], Michiel v Oudheusden. Michiel v Oudheusden heeft gezegd: New blog posting, Use action filter to fill in parameters - http://tinyurl.com/y8pjxr7 [...]</description>
		<content:encoded><![CDATA[<p>[...] Dit blogartikel was vermeld op Twitter door Joachim Farla [MVP], Michiel v Oudheusden. Michiel v Oudheusden heeft gezegd: New blog posting, Use action filter to fill in parameters &#8211; <a href="http://tinyurl.com/y8pjxr7" rel="nofollow">http://tinyurl.com/y8pjxr7</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Is there going to be an App store for BPOS? by Tweets die vermelden Is there going to be an App store for BPOS? « Into the cloud -- Topsy.com</title>
		<link>http://www.intothecloud.nl/index.php/2010/03/is-there-going-to-be-an-app-store-for-bpos/comment-page-1/#comment-6</link>
		<dc:creator>Tweets die vermelden Is there going to be an App store for BPOS? « Into the cloud -- Topsy.com</dc:creator>
		<pubDate>Thu, 25 Mar 2010 19:23:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.intothecloud.nl/?p=68#comment-6</guid>
		<description>[...] Dit blogartikel was vermeld op Twitter door Michiel v Oudheusden. Michiel v Oudheusden heeft gezegd: New blog posting, Is there going to be an App store for BPOS? - http://tinyurl.com/ycrmpdn [...]</description>
		<content:encoded><![CDATA[<p>[...] Dit blogartikel was vermeld op Twitter door Michiel v Oudheusden. Michiel v Oudheusden heeft gezegd: New blog posting, Is there going to be an App store for BPOS? &#8211; <a href="http://tinyurl.com/ycrmpdn" rel="nofollow">http://tinyurl.com/ycrmpdn</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MS shows new OCS version by Tweets die vermelden MS shows new OCS version « Into the cloud -- Topsy.com</title>
		<link>http://www.intothecloud.nl/index.php/2010/03/ms-shows-new-ocs-version/comment-page-1/#comment-5</link>
		<dc:creator>Tweets die vermelden MS shows new OCS version « Into the cloud -- Topsy.com</dc:creator>
		<pubDate>Wed, 24 Mar 2010 19:58:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.intothecloud.nl/?p=70#comment-5</guid>
		<description>[...] Dit blogartikel was vermeld op Twitter door Michiel v Oudheusden, Mark Prijs. Mark Prijs heeft gezegd: RT @mivano: New blog posting, MS shows new OCS version - http://tinyurl.com/ydmnjtg [...]</description>
		<content:encoded><![CDATA[<p>[...] Dit blogartikel was vermeld op Twitter door Michiel v Oudheusden, Mark Prijs. Mark Prijs heeft gezegd: RT @mivano: New blog posting, MS shows new OCS version &#8211; <a href="http://tinyurl.com/ydmnjtg" rel="nofollow">http://tinyurl.com/ydmnjtg</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building Facebook application and host them on Azure by Michiel</title>
		<link>http://www.intothecloud.nl/index.php/2010/03/building-facebook-application-and-host-them-on-azure/comment-page-1/#comment-3</link>
		<dc:creator>Michiel</dc:creator>
		<pubDate>Tue, 23 Mar 2010 10:40:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.intothecloud.nl/?p=39#comment-3</guid>
		<description>I haven&#039;t used Ninject yet, I only worked so far with Object Builder, Unity and MEF. Unity is still my favorite, enough documentation available and works great for what I need it for. 

Also I use some wrapper around IoC so I can switch the DI framework. Based on the code of &lt;a href=&quot;http://www.codeplex.com/Kigg&quot; rel=&quot;nofollow&quot;&gt;KiGG&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t used Ninject yet, I only worked so far with Object Builder, Unity and MEF. Unity is still my favorite, enough documentation available and works great for what I need it for. </p>
<p>Also I use some wrapper around IoC so I can switch the DI framework. Based on the code of <a href="http://www.codeplex.com/Kigg" rel="nofollow">KiGG</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building Facebook application and host them on Azure by Wiebe</title>
		<link>http://www.intothecloud.nl/index.php/2010/03/building-facebook-application-and-host-them-on-azure/comment-page-1/#comment-2</link>
		<dc:creator>Wiebe</dc:creator>
		<pubDate>Tue, 23 Mar 2010 08:53:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.intothecloud.nl/?p=39#comment-2</guid>
		<description>Nice! 

Would you recommend Ninject over Unity (or any other DI framework for that matter), if yes why?</description>
		<content:encoded><![CDATA[<p>Nice! </p>
<p>Would you recommend Ninject over Unity (or any other DI framework for that matter), if yes why?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

