<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Vibro.NET ----&gt; moved to www.cloudidentity.com!!! - All Comments</title><link>http://blogs.msdn.com/b/vbertocci/</link><description>Scatter thoughts</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: Using the BootstrapContext property in .NET 4.5</title><link>http://blogs.msdn.com/b/vbertocci/archive/2012/11/30/using-the-bootstrapcontext-property-in-net-4-5.aspx#10395782</link><pubDate>Thu, 21 Feb 2013 04:20:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10395782</guid><dc:creator>iConcepts</dc:creator><description>&lt;p&gt;Thanks Danila, yes i&amp;#39;m still seeing what I think is a bug with the SecurityToken becoming a null.&lt;/p&gt;
&lt;p&gt;using that possible solution doesn&amp;#39;t seam to work with JSON Web Tokens (JWT) because while the following code line creates a JWTSecurityToken from the bootstrapContext.Token&lt;/p&gt;
&lt;p&gt;JWTSecurityToken jwt = handlers.ReadToken(new XmlTextReader(new StringReader(bootstrapContext.Token))) as JWTSecurityToken;&lt;/p&gt;
&lt;p&gt;The token appears to be missing its signature and throws the following error if you try to validate it.&lt;/p&gt;
&lt;p&gt;JWT10312: Unable to validate signature, JWT does not have a signature: &lt;/p&gt;
&lt;p&gt;any ideas on how to get around this or is there a way to get the signature and concatenate it or does this compromise the users security?&lt;/p&gt;
&lt;p&gt;any help appreciated!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10395782" width="1" height="1"&gt;</description></item><item><title>re: Microsoft ASP.NET Tools for Windows Azure Active Directory – Visual Studio 2012</title><link>http://blogs.msdn.com/b/vbertocci/archive/2013/02/18/microsoft-asp-net-tools-for-windows-azure-active-directory-visual-studio-2012.aspx#10395190</link><pubDate>Tue, 19 Feb 2013 14:04:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10395190</guid><dc:creator>Mario Saccoia - MSP</dc:creator><description>&lt;p&gt;Very great feature!!!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10395190" width="1" height="1"&gt;</description></item><item><title>re: Using the BootstrapContext property in .NET 4.5</title><link>http://blogs.msdn.com/b/vbertocci/archive/2012/11/30/using-the-bootstrapcontext-property-in-net-4-5.aspx#10394787</link><pubDate>Mon, 18 Feb 2013 10:00:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10394787</guid><dc:creator>Danila Polevshikov</dc:creator><description>&lt;p&gt;Confirm bug with a SecurityToken becoming a null. &lt;/p&gt;
&lt;p&gt;Possible solution (thanks to a &lt;a rel="nofollow" target="_new" href="http://stackoverflow.com/questions/13514553/wif-4-5-bootstrapcontext-security-token-null"&gt;stackoverflow.com/.../wif-4-5-bootstrapcontext-security-token-null&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;if (context.SecurityToken != null)&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;token = context.SecurityToken;&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;else if (!String.IsNullOrEmpty(context.Token))&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;var handlers = FederatedAuthentication.FederationConfiguration.IdentityConfiguration.SecurityTokenHandlers;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;token = handlers.ReadToken(new XmlTextReader(new StringReader(context.Token)));&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10394787" width="1" height="1"&gt;</description></item><item><title>re: Windows Identity Foundation Tools for Visual Studio 2012 RTM</title><link>http://blogs.msdn.com/b/vbertocci/archive/2012/10/23/windows-identity-foundation-tools-for-visual-studio-2012-rtm.aspx#10392800</link><pubDate>Mon, 11 Feb 2013 23:21:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10392800</guid><dc:creator>Andrew Lavers</dc:creator><description>&lt;p&gt;Hey Vittorio,&lt;/p&gt;
&lt;p&gt;I just finished a small hackathon project at work. We have a customer facing site built on django. I implemented and demoed a feature that lets users link their existing accounts to consumer identity providers.&lt;/p&gt;
&lt;p&gt;I used ACS to do this of course :) I also went ahead and tried out &amp;nbsp;the latest Identity and Access tools for VS, pleasently impressed with how awesome they are. Fantastic work!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10392800" width="1" height="1"&gt;</description></item><item><title>re: Using the BootstrapContext property in .NET 4.5</title><link>http://blogs.msdn.com/b/vbertocci/archive/2012/11/30/using-the-bootstrapcontext-property-in-net-4-5.aspx#10390165</link><pubDate>Fri, 01 Feb 2013 05:52:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10390165</guid><dc:creator>iConcepts</dc:creator><description>&lt;p&gt;Hi Paul, Vittorio,&lt;/p&gt;
&lt;p&gt;did you have any love with the BootstrapContext.SecurityToken disappearing - i&amp;#39;m seeing the same behaviour..&lt;/p&gt;
&lt;p&gt;it works for the first one or two calls to the back end from the front end but then the security token shows as null.&lt;/p&gt;
&lt;p&gt;when I try to recreate the security token (i&amp;#39;m not sure if im doing it right for JWT):&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var handlers = FederatedAuthentication.FederationConfiguration.IdentityConfiguration.SecurityTokenHandlers;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;JWTSecurityToken jwt = handlers.ReadToken(new XmlTextReader(new StringReader(bootstrapContext.Token))) as JWTSecurityToken;&lt;/p&gt;
&lt;p&gt;(as you mentioned) it seams to have the session information but not the token from the idp so subsequent calls using &amp;quot;poorman&amp;#39;s&amp;quot; delegation fails.&lt;/p&gt;
&lt;p&gt;any thoughts?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10390165" width="1" height="1"&gt;</description></item><item><title>re: Single Sign On with Windows Azure Active Directory: a Deep Dive</title><link>http://blogs.msdn.com/b/vbertocci/archive/2012/07/12/single-sign-on-with-windows-azure-active-directory-a-deep-dive.aspx#10388410</link><pubDate>Fri, 25 Jan 2013 20:00:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10388410</guid><dc:creator>michiel van buuren</dc:creator><description>&lt;p&gt;Great in depth explanation. Now the WAAD is GA the url for retriving the federationmetadata has changed to &lt;a rel="nofollow" target="_new" href="https://accounts.accesscontrol.windows.net/xxxx.onmicrosoft.com/FederationMetadata/2007-06/FederationMetadata.xml"&gt;accounts.accesscontrol.windows.net/.../FederationMetadata.xml&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Michiel&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10388410" width="1" height="1"&gt;</description></item><item><title>re: Group &amp; Role Claims: Use the Graph API to Get Back IsInRole() and [Authorize] in Windows Azure AD Apps</title><link>http://blogs.msdn.com/b/vbertocci/archive/2013/01/22/group-amp-role-claims-use-the-graph-api-to-get-back-isinrole-and-authorize-in-windows-azure-ad-apps.aspx#10387590</link><pubDate>Wed, 23 Jan 2013 15:26:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10387590</guid><dc:creator>Christian Metz</dc:creator><description>&lt;p&gt;Thanks a lot! This closes the gap between what was currently out there in your documentation. Next step for me would be, to get to know how to authorize a second Azure AD within my application.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10387590" width="1" height="1"&gt;</description></item><item><title>re: Group &amp; Role Claims: Use the Graph API to Get Back IsInRole() and [Authorize] in Windows Azure AD Apps</title><link>http://blogs.msdn.com/b/vbertocci/archive/2013/01/22/group-amp-role-claims-use-the-graph-api-to-get-back-isinrole-and-authorize-in-windows-azure-ad-apps.aspx#10387431</link><pubDate>Wed, 23 Jan 2013 06:14:04 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10387431</guid><dc:creator>Wouter</dc:creator><description>&lt;p&gt;This is exactly what I was looking for. I couldn&amp;#39;t understand how to retrieve the symmetric key for accessing the graph after using the mvc tool.&lt;/p&gt;
&lt;p&gt;Very nice.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10387431" width="1" height="1"&gt;</description></item><item><title>re: Provisioning a Windows Azure Active Directory Tenant as an Identity Provider in an ACS Namespace</title><link>http://blogs.msdn.com/b/vbertocci/archive/2012/11/07/provisioning-a-directory-tenant-as-an-identity-provider-in-an-acs-namespace.aspx#10381211</link><pubDate>Fri, 28 Dec 2012 21:17:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10381211</guid><dc:creator>robertobmsn</dc:creator><description>&lt;p&gt;What should I make of the puid claim issued by o365 and azure active directory tenants that I&amp;#39;ve enabled as identity providers in my acs namespace federation provider setups? &amp;nbsp; Is it a unique value that will stay the same regardless of name changes similar to old passport [ -&amp;gt; liveId - &amp;gt; microsoft account ] puids?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10381211" width="1" height="1"&gt;</description></item><item><title>re: Windows Identity Foundation in the .NET Framework 4.5 Beta: Tools, Samples, Claims Everywhere</title><link>http://blogs.msdn.com/b/vbertocci/archive/2012/03/15/windows-identity-foundation-in-the-net-framework-4-5-beta-tools-samples-claims-everywhere.aspx#10376807</link><pubDate>Wed, 12 Dec 2012 13:19:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10376807</guid><dc:creator>Altenstedt</dc:creator><description>&lt;p&gt;Any news on the missing Silverlight OOB sample as commented by Remco Blok?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10376807" width="1" height="1"&gt;</description></item></channel></rss>