<?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 DotNetOpenAuth</title>
	<atom:link href="http://www.dotnetopenauth.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dotnetopenauth.net</link>
	<description>C# Library for OpenID, OAuth and InfoCards</description>
	<lastBuildDate>Fri, 06 Jan 2012 07:42:00 +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 OpenID Relying Party using ASP.NET Controls by Somesh</title>
		<link>http://www.dotnetopenauth.net/developers/help/openid-relying-party-using-asp-net-controls/comment-page-1/#comment-48</link>
		<dc:creator>Somesh</dc:creator>
		<pubDate>Fri, 06 Jan 2012 07:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dotnetopenauth.net/developers/code-snippets/openid-relying-party/openid-relying-party-using-asp-net-controls/#comment-48</guid>
		<description>Hi, 
Your article are really awesome.actually i was in search for some good articles on Login Control in ASP.Net and finally i got one.
The most important is the simplicity which will be very helpful for the beginners.
I had found another nice post over the internet which have also a wonderful explanation on login control in asp.net, for more details of that post you may check out this link...

http://www.mindstick.com/Articles/1bd75404-424e-4c84-ab55-28742117d6ad/?Login%20Control%20in%20ASP.Net

Thanks Everyone!!
</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Your article are really awesome.actually i was in search for some good articles on Login Control in ASP.Net and finally i got one.<br />
The most important is the simplicity which will be very helpful for the beginners.<br />
I had found another nice post over the internet which have also a wonderful explanation on login control in asp.net, for more details of that post you may check out this link&#8230;</p>
<p><a href="http://www.mindstick.com/Articles/1bd75404-424e-4c84-ab55-28742117d6ad/?Login%20Control%20in%20ASP.Net" rel="nofollow">http://www.mindstick.com/Articles/1bd75404-424e-4c84-ab55-28742117d6ad/?Login%20Control%20in%20ASP.Net</a></p>
<p>Thanks Everyone!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OpenID Simple Registration extension for obtaining user attributes by Ianccullen</title>
		<link>http://www.dotnetopenauth.net/developers/help/openid-simple-registration-extension-for-obtaining-user-attributes/comment-page-1/#comment-47</link>
		<dc:creator>Ianccullen</dc:creator>
		<pubDate>Mon, 05 Dec 2011 18:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dotnetopenauth.net/developers/code-snippets/openid-relying-party/openid-simple-registration-extension-for-obtaining-user-attributes/#comment-47</guid>
		<description>I tried using PayPal Access, and the sreg doesnt seem to return FullName and Email :(</description>
		<content:encoded><![CDATA[<p>I tried using PayPal Access, and the sreg doesnt seem to return FullName and Email <img src='http://www.dotnetopenauth.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Programmatic OpenID Relying Party by Alexis Alulema</title>
		<link>http://www.dotnetopenauth.net/developers/help/programmatic-openid-relying-party/comment-page-1/#comment-45</link>
		<dc:creator>Alexis Alulema</dc:creator>
		<pubDate>Wed, 16 Nov 2011 19:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dotnetopenauth.net/developers/code-snippets/openid-relying-party/programmatic-openid-relying-party/#comment-45</guid>
		<description>HI all you guys,

I made it works without many problems...

1. Your view for LogOn (i mean LogOn.cshtml)
   You&#039;ll need the specific endpoint for Google/Yahoo or something else, by example...

@using(Html.BeginForm(&quot;LogOn&quot;, &quot;Account&quot;, FormMethod.Post, new { @id = &quot;openIdForm&quot; })) {

     
           
                            @Html.Hidden(&quot;loginIdentifier&quot;, &quot;https://www.google.com/accounts/o8/id&quot;)
                            &lt;a href=&quot;javascript:$(&#039;#openIdForm&#039;).submit();&quot;&gt;Log In by Google&lt;/a&gt;
                
     

}

It should sends &quot;loginIdentifier&quot; back to LogOn with [HttpPost] and DotNetOpenAuth parses it to reassemble the parameters as indicated in http://code.google.com/apis/accounts/docs/OpenID.html, and it will send the OpenID request to Google.

Regards from SouthAmerica</description>
		<content:encoded><![CDATA[<p>HI all you guys,</p>
<p>I made it works without many problems&#8230;</p>
<p>1. Your view for LogOn (i mean LogOn.cshtml)<br />
   You&#8217;ll need the specific endpoint for Google/Yahoo or something else, by example&#8230;</p>
<p>@using(Html.BeginForm(&#8220;LogOn&#8221;, &#8220;Account&#8221;, FormMethod.Post, new { @id = &#8220;openIdForm&#8221; })) {</p>
<p>                            @Html.Hidden(&#8220;loginIdentifier&#8221;, &#8220;https://www.google.com/accounts/o8/id&#8221;)<br />
                            &lt;a href=&#8221;javascript:$(&#8216;#openIdForm&#8217;).submit();&#8221;&gt;Log In by Google&lt;/a&gt;</p>
<p>}</p>
<p>It should sends &#8220;loginIdentifier&#8221; back to LogOn with [HttpPost] and DotNetOpenAuth parses it to reassemble the parameters as indicated in <a href="http://code.google.com/apis/accounts/docs/OpenID.html" rel="nofollow">http://code.google.com/apis/accounts/docs/OpenID.html</a>, and it will send the OpenID request to Google.</p>
<p>Regards from SouthAmerica</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Programmatic OpenID Relying Party by Neerajsaini1982</title>
		<link>http://www.dotnetopenauth.net/developers/help/programmatic-openid-relying-party/comment-page-1/#comment-44</link>
		<dc:creator>Neerajsaini1982</dc:creator>
		<pubDate>Wed, 16 Nov 2011 04:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dotnetopenauth.net/developers/code-snippets/openid-relying-party/programmatic-openid-relying-party/#comment-44</guid>
		<description>Its goes to ProtocolException and gives error message as No OpenID endpoint found</description>
		<content:encoded><![CDATA[<p>Its goes to ProtocolException and gives error message as No OpenID endpoint found</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OpenID Relying Party using ASP.NET Controls by David Christiansen</title>
		<link>http://www.dotnetopenauth.net/developers/help/openid-relying-party-using-asp-net-controls/comment-page-1/#comment-43</link>
		<dc:creator>David Christiansen</dc:creator>
		<pubDate>Mon, 24 Oct 2011 09:35:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.dotnetopenauth.net/developers/code-snippets/openid-relying-party/openid-relying-party-using-asp-net-controls/#comment-43</guid>
		<description>Fixed</description>
		<content:encoded><![CDATA[<p>Fixed</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OpenID Relying Party using ASP.NET Controls by Arthur Csertus</title>
		<link>http://www.dotnetopenauth.net/developers/help/openid-relying-party-using-asp-net-controls/comment-page-1/#comment-42</link>
		<dc:creator>Arthur Csertus</dc:creator>
		<pubDate>Mon, 24 Oct 2011 08:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dotnetopenauth.net/developers/code-snippets/openid-relying-party/openid-relying-party-using-asp-net-controls/#comment-42</guid>
		<description>Live demo is not working!</description>
		<content:encoded><![CDATA[<p>Live demo is not working!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Programmatic OpenID Relying Party by Chirdeep Tomar</title>
		<link>http://www.dotnetopenauth.net/developers/help/programmatic-openid-relying-party/comment-page-1/#comment-40</link>
		<dc:creator>Chirdeep Tomar</dc:creator>
		<pubDate>Sat, 22 Oct 2011 22:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dotnetopenauth.net/developers/code-snippets/openid-relying-party/programmatic-openid-relying-party/#comment-40</guid>
		<description>I am getting the folowing erroer: Cannot convert type `System.Web.Mvc.ActionResult&#039; to `System.Web.Mvc.ActionResult&#039;  at the last line            

 return request.RedirectingResponse.AsActionResult();

[AcceptVerbs(HttpVerbs.Post)]
        public ActionResult LogOn(string openid_identifier)
        {
            var openid = new OpenIdRelyingParty();

            IAuthenticationRequest request = openid.CreateRequest(Identifier.Parse(openid_identifier));
            var fields = new ClaimsRequest();
            fields.Email = DemandLevel.Require;
            fields.FullName = DemandLevel.Require;
            request.AddExtension(fields);

            return request.RedirectingResponse.AsActionResult();
		}

I am running this under Mono 2.10.5 Any ideas?</description>
		<content:encoded><![CDATA[<p>I am getting the folowing erroer: Cannot convert type `System.Web.Mvc.ActionResult&#8217; to `System.Web.Mvc.ActionResult&#8217;  at the last line            </p>
<p> return request.RedirectingResponse.AsActionResult();</p>
<p>[AcceptVerbs(HttpVerbs.Post)]<br />
        public ActionResult LogOn(string openid_identifier)<br />
        {<br />
            var openid = new OpenIdRelyingParty();</p>
<p>            IAuthenticationRequest request = openid.CreateRequest(Identifier.Parse(openid_identifier));<br />
            var fields = new ClaimsRequest();<br />
            fields.Email = DemandLevel.Require;<br />
            fields.FullName = DemandLevel.Require;<br />
            request.AddExtension(fields);</p>
<p>            return request.RedirectingResponse.AsActionResult();<br />
		}</p>
<p>I am running this under Mono 2.10.5 Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Help by Moti Zviling</title>
		<link>http://www.dotnetopenauth.net/developers/help/comment-page-1/#comment-35</link>
		<dc:creator>Moti Zviling</dc:creator>
		<pubDate>Tue, 20 Sep 2011 13:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dotnetopenauth.net/developers/code-snippets/#comment-35</guid>
		<description>I would like to use the DotNetOpenAuth to auto fill username and password in Gmail Can you let me know how to use the object to do it automatically and press the submit button automatically as well ?
Thanks, 
Mark</description>
		<content:encoded><![CDATA[<p>I would like to use the DotNetOpenAuth to auto fill username and password in Gmail Can you let me know how to use the object to do it automatically and press the submit button automatically as well ?<br />
Thanks,<br />
Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Help by Moti Zviling</title>
		<link>http://www.dotnetopenauth.net/developers/help/comment-page-1/#comment-34</link>
		<dc:creator>Moti Zviling</dc:creator>
		<pubDate>Tue, 20 Sep 2011 13:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dotnetopenauth.net/developers/code-snippets/#comment-34</guid>
		<description>I would like to use the DotNetOpenAuth to auto fill username and password in Gmail Can you let me know how to use the object to do it automatically and press the submit button automatically as well ?
Thanks, 
Mark</description>
		<content:encoded><![CDATA[<p>I would like to use the DotNetOpenAuth to auto fill username and password in Gmail Can you let me know how to use the object to do it automatically and press the submit button automatically as well ?<br />
Thanks,<br />
Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OpenID Relying Party using ASP.NET Controls by Anhhai680</title>
		<link>http://www.dotnetopenauth.net/developers/help/openid-relying-party-using-asp-net-controls/comment-page-1/#comment-28</link>
		<dc:creator>Anhhai680</dc:creator>
		<pubDate>Tue, 23 Aug 2011 08:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dotnetopenauth.net/developers/code-snippets/openid-relying-party/openid-relying-party-using-asp-net-controls/#comment-28</guid>
		<description>any demo doesn&#039;t work.</description>
		<content:encoded><![CDATA[<p>any demo doesn&#8217;t work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

