<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>azureproviders Discussions Rss Feed</title><link>http://azureproviders.codeplex.com/discussions</link><description>azureproviders Discussions Rss Description</description><item><title>New Post: A few bugs I ran across...</title><link>http://azureproviders.codeplex.com/discussions/435129</link><description>&lt;div style="line-height: normal;"&gt;Thanks for reporting this. Would you mind sharing your patch with the community? &lt;br /&gt;
&lt;br /&gt;
I will fix this in the next release, but I'm bogged down with other work these days, sry.&lt;br /&gt;
&lt;/div&gt;</description><author>ihenriksen</author><pubDate>Sun, 24 Mar 2013 12:57:01 GMT</pubDate><guid isPermaLink="false">New Post: A few bugs I ran across... 20130324125701P</guid></item><item><title>New Post: A few bugs I ran across...</title><link>http://azureproviders.codeplex.com/discussions/435129</link><description>&lt;div style="line-height: normal;"&gt;I’ve been using the ASPProviders code in a couple of my Azure projects and ran across a few bugs I’ll share here.&lt;br /&gt;
&lt;br /&gt;
I’m not using session at all, I am using TableStorageProfileProvider, TableStorageRoleProvider, and TableStorageMembershipProvider.  I noticed some time ago that user profile blobs were getting orphaned in the profileprovidercontainer.   Digging into the DeleteProfiles, I found that it attempts to do a cleanup of the blob using a call to DeleteBlobsWithPrefix and tries to remove all the blobs that start with the user name.  This has two major problems:&lt;br /&gt;
1)	Deleting blobs that start with a username can potentially delete blobs of similarly named users.  For instance, deleting “Jeff” would also delete profiles for “Jeffrey”,  etc.&lt;br /&gt;
2)	Blobs are identified via a call to ListBlobs that assumes the blob URI doesn’t contain a fully qualified URI – so the StartsWith always fails.&lt;br /&gt;
I re-worked ListBlobs to search for a “/” + ProfileBlobName and use Contains instead of StartsWith.  I pass in the full blob profile name to cleanup and do not use the username (bad bad bad).&lt;br /&gt;
&lt;br /&gt;
I also found an error in the logic to save profile information.  It always saves a new blob and orphans the old one.  I added a call to CreateOrUpdateUserAndProfile to delete the old profile blob before saving the new one.&lt;br /&gt;
&lt;/div&gt;</description><author>ReedR</author><pubDate>Sat, 02 Mar 2013 18:29:20 GMT</pubDate><guid isPermaLink="false">New Post: A few bugs I ran across... 20130302062920P</guid></item><item><title>New Post: AzureProviders is outdated with Oct 2012 v1.8 SDK (StorageClient has been replaced)</title><link>http://azureproviders.codeplex.com/discussions/430807</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Thank you for the heads-up. I will try to fix this when I have some spare time, unfortunatly I'm quite busy forward so if you have a patch I would appreciate you sharing it with the rest of the community.&lt;/p&gt;
&lt;/div&gt;</description><author>ihenriksen</author><pubDate>Fri, 25 Jan 2013 18:12:33 GMT</pubDate><guid isPermaLink="false">New Post: AzureProviders is outdated with Oct 2012 v1.8 SDK (StorageClient has been replaced) 20130125061233P</guid></item><item><title>New Post: AzureProviders is outdated with Oct 2012 v1.8 SDK (StorageClient has been replaced)</title><link>http://azureproviders.codeplex.com/discussions/430807</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Breaking changes between &lt;span style="font-size:x-small; font-family:Consolas"&gt;
&lt;span style="font-size:x-small; font-family:Consolas"&gt;Microsoft.WindowsAzure.&lt;strong&gt;StorageClient&lt;/strong&gt;;&amp;nbsp; and
&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:x-small; font-family:Consolas"&gt;&lt;span style="font-size:x-small; font-family:Consolas"&gt;Microsoft.WindowsAzure.&lt;strong&gt;Storage&lt;/strong&gt;;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:x-small; font-family:Consolas"&gt;&lt;span style="font-size:x-small; font-family:Consolas"&gt;I found it to be non-trivial to update AzureProviders because the breaking changes are everywhere.&amp;nbsp; FYI.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>roachslayer</author><pubDate>Fri, 25 Jan 2013 03:09:03 GMT</pubDate><guid isPermaLink="false">New Post: AzureProviders is outdated with Oct 2012 v1.8 SDK (StorageClient has been replaced) 20130125030903A</guid></item><item><title>New Post: Good starting point for creating a custom membership provider for an ASP.NET MVC app running in Azure?</title><link>http://azureproviders.codeplex.com/discussions/391677</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;&amp;gt;&amp;nbsp;&lt;span&gt;From what I understand though, it's typically recommended to write your own custom membership provider with a schema tailored to your data model as opposed to employing the ASP.NET Profile system.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;The nice thing with ASP.NET profiles is that it's already integrated with ASP.NET Membership and in AzureProviders it is automatically stored and retrieved from the Azure table storage. If you make your own schema you will have to also handle storage and retrieval of the data, serialization/deserialization of the data, and integration with the ASP.NET Membership provider. So, I conclude that there are many pro's and con's.&lt;/p&gt;
&lt;p&gt;&amp;gt;&amp;nbsp;&lt;span&gt;Would AzureProviders be a recommended starting point for writing a custom membership provider for my MVC (4) application? Appreciate any advice :)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;There are users of this project that have used AzureProveders with MVC, the user "edikt" has a review on the download page where he/she mentioned he/she has done just that. You could try to contact endikt via CodePlex, perhaps he/she can help you with this.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><author>ihenriksen</author><pubDate>Thu, 16 Aug 2012 09:12:59 GMT</pubDate><guid isPermaLink="false">New Post: Good starting point for creating a custom membership provider for an ASP.NET MVC app running in Azure? 20120816091259A</guid></item><item><title>New Post: Good starting point for creating a custom membership provider for an ASP.NET MVC app running in Azure?</title><link>http://azureproviders.codeplex.com/discussions/391677</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I'm new to ASP.NET Membership and Azure, while I have some background in ASP.NET MVC. From what I understand though, it's typically recommended to write your own custom membership provider with a schema tailored to your data model as opposed to employing
 the ASP.NET Profile system.&lt;/p&gt;
&lt;p&gt;Would AzureProviders be a recommended starting point for writing a custom membership provider for my MVC (4) application? Appreciate any advice :)&lt;/p&gt;
&lt;/div&gt;</description><author>aknuds1</author><pubDate>Wed, 15 Aug 2012 12:42:35 GMT</pubDate><guid isPermaLink="false">New Post: Good starting point for creating a custom membership provider for an ASP.NET MVC app running in Azure? 20120815124235P</guid></item><item><title>New Post: Is this the same as code.msdn.com providers... it seems out of date</title><link>http://azureproviders.codeplex.com/discussions/348144</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Great news, I will use this projecty maintained by community.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Tnx&lt;/p&gt;&lt;/div&gt;</description><author>JuanK</author><pubDate>Thu, 03 May 2012 17:10:54 GMT</pubDate><guid isPermaLink="false">New Post: Is this the same as code.msdn.com providers... it seems out of date 20120503051054P</guid></item><item><title>New Post: Is this the same as code.msdn.com providers... it seems out of date</title><link>http://azureproviders.codeplex.com/discussions/348144</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;No, this is not the same code as on msdn.com.&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>ihenriksen</author><pubDate>Tue, 17 Apr 2012 09:44:09 GMT</pubDate><guid isPermaLink="false">New Post: Is this the same as code.msdn.com providers... it seems out of date 20120417094409A</guid></item><item><title>New Post: Azure Session State Provider.</title><link>http://azureproviders.codeplex.com/discussions/352392</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;There is a physical limit in the Azure Table Storage of 1MB per row, and a limit of 64 Kb (Kilobytes) per string field. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Source:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/dd179338.aspx"&gt;http://msdn.microsoft.com/en-us/library/dd179338.aspx&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><author>ihenriksen</author><pubDate>Tue, 17 Apr 2012 09:41:16 GMT</pubDate><guid isPermaLink="false">New Post: Azure Session State Provider. 20120417094116A</guid></item><item><title>New Post: Azure Session State Provider.</title><link>http://azureproviders.codeplex.com/discussions/352392</link><description>&lt;div style="line-height: normal;"&gt;yes, got same issue on production but unfortunately I don't have that stack trace.
&lt;div&gt;Earlier I was storing big object into session (containing user ID, First Name, Last Name and many more details) after that I tried putting only single integer value i.e. User ID, and got same issue on production.&lt;/div&gt;
&lt;div&gt;Question : After adding value into session it encrypts and then stores into table storage which is a big encrypted value. Is this causing an error?&lt;br&gt;
&lt;br&gt;
&lt;div&gt;On Tue, Apr 17, 2012 at 1:34 PM, ihenriksen &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:notifications@codeplex.com"&gt;notifications@codeplex.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote style="margin:0 0 0 .8ex; border-left:1px #ccc solid; padding-left:1ex"&gt;
&lt;div&gt;
&lt;p&gt;From: ihenriksen&lt;/p&gt;
&lt;div&gt;
&lt;p&gt;I think this is becuase you are trying to store more than 255 characters in the Azure table storage, in the development environment there is an maximum limit of 255 characters per entity field. This is becuase everything is stored in MS SQL Server in developement
 envrionment which has this limit. In staging/production this error should not occur, if it still does then let me know and I will have a look at it again.&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;p&gt;Read the &lt;a href="http://azureproviders.codeplex.com/discussions/352392#post824718" target="_blank"&gt;
full discussion online&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To add a post to this discussion, reply to this email (&lt;a href="mailto:azureproviders@discussions.codeplex.com?subject=[azureproviders:352392]" target="_blank"&gt;azureproviders@discussions.codeplex.com&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;To start a new discussion for this project, email &lt;a href="mailto:azureproviders@discussions.codeplex.com" target="_blank"&gt;
azureproviders@discussions.codeplex.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You are receiving this email because you subscribed to this discussion on CodePlex. You can
&lt;a href="https://azureproviders.codeplex.com/discussions/352392/unsubscribe/" target="_blank"&gt;
unsubscribe&lt;/a&gt; on CodePlex.com.&lt;/p&gt;
&lt;p&gt;Please note: Images and attachments will be removed from emails. Any posts to this discussion will also be available online at CodePlex.com&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/blockquote&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br clear="all"&gt;
&lt;div&gt;&lt;br&gt;
&lt;/div&gt;
-- &lt;br&gt;
Thanks &amp; Regards&lt;br&gt;
vinayak&lt;br&gt;
&lt;/div&gt;
&lt;/div&gt;</description><author>kumbharvinayak</author><pubDate>Tue, 17 Apr 2012 09:01:14 GMT</pubDate><guid isPermaLink="false">New Post: Azure Session State Provider. 20120417090114A</guid></item><item><title>New Post: Azure Session State Provider.</title><link>http://azureproviders.codeplex.com/discussions/352392</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I think this is becuase you are trying to store more than 255 characters in the Azure table storage, in the development environment there is an maximum limit of 255 characters per entity field. This is becuase everything is stored in MS SQL Server in developement envrionment which has this limit. In staging/production this error should not occur, if it still does then let me know and I will have a look at it again.&lt;/p&gt;&lt;/div&gt;</description><author>ihenriksen</author><pubDate>Tue, 17 Apr 2012 08:04:31 GMT</pubDate><guid isPermaLink="false">New Post: Azure Session State Provider. 20120417080431A</guid></item><item><title>New Post: Azure Session State Provider.</title><link>http://azureproviders.codeplex.com/discussions/352392</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div&gt;Here is the stack trace...&lt;/div&gt;
&lt;div&gt;An error of error code: System.Data.Services.Client.DataServiceRequestException has occured into MyAzureApp web role. An error occurred while processing this request.System.Data.Services.Client.DataServiceClientException: &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;
 standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;/div&gt;
&lt;div&gt;&amp;lt;error xmlns=&amp;quot;&lt;a href="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"&gt;http://schemas.microsoft.com/ado/2007/08/dataservices/metadata&lt;/a&gt;&amp;quot;&amp;gt;&lt;/div&gt;
&lt;div&gt;&lt;code&gt;PropertyValueTooLarge&lt;/code&gt;&lt;/div&gt;
&lt;div&gt;&amp;lt;message xml:lang=&amp;quot;en-US&amp;quot;&amp;gt;The property value is larger than allowed by the Table Service.&lt;/div&gt;
&lt;div&gt;RequestId:f8fc4638-adad-452b-bd5a-aa8e33b2594d&lt;/div&gt;
&lt;div&gt;Time:2012-02-13T05:00:38.3133923Z&amp;lt;/message&amp;gt;&lt;/div&gt;
&lt;div&gt;&amp;lt;/error&amp;gt;&lt;/div&gt;
&lt;div&gt;at System.Data.Services.Client.DataServiceContext.SaveResult.&amp;lt;HandleBatchResponse&amp;gt;d__1e.MoveNext() at AzureTableStorage.AzureTableStorageDataSource.Update(SessionStateEntity itemToUpdate, MergeOption mergeOption) in C:\MyApp\VSS\MyAzureApp\AzureTableStorage\AzureTableStorageDataSource.cs:line
 565&lt;/div&gt;
&lt;div&gt;at MyAzureApp WebRole.Blll.AzureSessionStateProvider.SetAndReleaseItemExclusive(HttpContext context, String id, SessionStateStoreData item, Object lockId, Boolean newItem) in C:\MyApp\VSS\MyAzureApp \ MyAzureAppWebRole\Session Class\AzureSessionStateProvider.cs:line
 352&lt;/div&gt;
&lt;div&gt;at System.Web.SessionState.SessionStateModule.OnReleaseState(Object source, EventArgs eventArgs)&lt;/div&gt;
&lt;div&gt;at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()&lt;/div&gt;
&lt;div&gt;at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously); TraceSource 'WebError' event&lt;/div&gt;
&lt;br&gt;
&lt;div&gt;On Mon, Apr 16, 2012 at 3:53 PM, ihenriksen &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:notifications@codeplex.com"&gt;notifications@codeplex.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote style="margin:0 0 0 .8ex; border-left:1px #ccc solid; padding-left:1ex"&gt;
&lt;div&gt;
&lt;p&gt;From: ihenriksen&lt;/p&gt;
&lt;div&gt;
&lt;p&gt;Could you show the entire exception and stack trace please.&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p&gt;Read the &lt;a href="http://azureproviders.codeplex.com/discussions/352392#post824312" target="_blank"&gt;
full discussion online&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To add a post to this discussion, reply to this email (&lt;a href="mailto:azureproviders@discussions.codeplex.com?subject=[azureproviders:352392]" target="_blank"&gt;azureproviders@discussions.codeplex.com&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;To start a new discussion for this project, email &lt;a href="mailto:azureproviders@discussions.codeplex.com" target="_blank"&gt;
azureproviders@discussions.codeplex.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You are receiving this email because you subscribed to this discussion on CodePlex. You can
&lt;a href="https://azureproviders.codeplex.com/discussions/352392/unsubscribe/" target="_blank"&gt;
unsubscribe&lt;/a&gt; on CodePlex.com.&lt;/p&gt;
&lt;p&gt;Please note: Images and attachments will be removed from emails. Any posts to this discussion will also be available online at CodePlex.com&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/blockquote&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br clear="all"&gt;
&lt;div&gt;&lt;br&gt;
&lt;/div&gt;
-- &lt;br&gt;
Thanks &amp; Regards&lt;br&gt;
vinayak&lt;br&gt;
&lt;/div&gt;</description><author>kumbharvinayak</author><pubDate>Mon, 16 Apr 2012 11:42:04 GMT</pubDate><guid isPermaLink="false">New Post: Azure Session State Provider. 20120416114204A</guid></item><item><title>New Post: Azure Session State Provider.</title><link>http://azureproviders.codeplex.com/discussions/352392</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Could you show the entire exception and stack trace please.&lt;/p&gt;&lt;/div&gt;</description><author>ihenriksen</author><pubDate>Mon, 16 Apr 2012 10:22:59 GMT</pubDate><guid isPermaLink="false">New Post: Azure Session State Provider. 20120416102259A</guid></item><item><title>New Post: Azure Session State Provider.</title><link>http://azureproviders.codeplex.com/discussions/352392</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Sometimes Azure Session State Provider shows &amp;quot;PropertyValueIsTooLarge&amp;quot; error. And this comes from AzureSessionStateProvider class. Can anybody tell how to solve this issue?&lt;/p&gt;
&lt;/div&gt;</description><author>kumbharvinayak</author><pubDate>Mon, 16 Apr 2012 05:08:48 GMT</pubDate><guid isPermaLink="false">New Post: Azure Session State Provider. 20120416050848A</guid></item><item><title>New Post: Is this the same as code.msdn.com providers... it seems out of date</title><link>http://azureproviders.codeplex.com/discussions/348144</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I need session state in Azure Table. &amp;nbsp;Should I use this code or the one located in&amp;nbsp;&lt;a href="http://code.msdn.microsoft.com/windowsazure/Windows-Azure-ASPNET-03d5dc14"&gt;http://code.msdn.microsoft.com/windowsazure/Windows-Azure-ASPNET-03d5dc14&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>clamont</author><pubDate>Sun, 11 Mar 2012 03:35:41 GMT</pubDate><guid isPermaLink="false">New Post: Is this the same as code.msdn.com providers... it seems out of date 20120311033541A</guid></item><item><title>New Post: SQL Azure Provider</title><link>http://azureproviders.codeplex.com/discussions/275694</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;A quick update for anyone following this:&lt;/p&gt;
&lt;p&gt;I have AzureProviders &lt;strong&gt;Membership &lt;/strong&gt;provider working against SQL Express on my dev enviro, very easy with just a change the web.config:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;replace this: &lt;span style="color: #ff0000;"&gt;name&lt;/span&gt;="&lt;span style="color: #0000ff;"&gt;AzureMembershipProvider&lt;/span&gt;" &lt;span style="color: #ff0000;"&gt;type&lt;/span&gt;="&lt;span style="color: #0000ff;"&gt;WebPages.Bll.AzureMembershipProvider"&lt;/span&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;with this:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: #ff0000;"&gt;name&lt;/span&gt;="&lt;span style="color: #0000ff;"&gt;AspNetSqlMembershipProvider&lt;/span&gt;" &lt;span style="color: #ff0000;"&gt;type&lt;/span&gt;="&lt;span style="color: #0000ff;"&gt;System.Web.Security.SqlMembershipProvider&lt;/span&gt;" &lt;span style="color: #ff0000;"&gt;connectionStringName&lt;/span&gt;="&lt;strong&gt;&lt;span style="color: #0000ff;"&gt;ApplicationServices&lt;/span&gt;&lt;/strong&gt;"&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;Next, replace the custom &lt;strong&gt;profile &lt;/strong&gt;and &lt;strong&gt;role &lt;/strong&gt;providers with the default ASP.NET providers (see web.config of a new ASP.NET project that uses Membership). Be sure also to&amp;nbsp;add these properties inside the &amp;lt;&lt;span style="color: #800000;"&gt;profile&lt;/span&gt;&amp;gt; section since AzureProviders uses these:&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;span style="color: #800000;"&gt;properties&lt;/span&gt;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;span style="color: #800000;"&gt;add &lt;/span&gt;&lt;span style="color: #ff0000;"&gt;name&lt;/span&gt;="&lt;span style="color: #0000ff;"&gt;Gender&lt;/span&gt;" &lt;span style="color: #ff0000;"&gt;type&lt;/span&gt;="&lt;span style="color: #0000ff;"&gt;System.Int32&lt;/span&gt;" /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;span style="color: #800000;"&gt;add &lt;/span&gt;&lt;span style="color: #ff0000;"&gt;name&lt;/span&gt;="&lt;span style="color: #0000ff;"&gt;PortraitBlobAddressUri&lt;/span&gt;" /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/&lt;span style="color: #800000;"&gt;properties&lt;/span&gt;&amp;gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;Now&amp;nbsp;make sure a connection string to the memberhsip DB is of course added&amp;nbsp;and correct, as follows:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp; ...&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;/&lt;span style="color: #800000;"&gt;appSettings&lt;/span&gt;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;&lt;span style="color: #800000;"&gt;connectionStrings&lt;/span&gt;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;span style="color: #800000;"&gt;add &lt;/span&gt;&lt;span style="color: #ff0000;"&gt;name&lt;/span&gt;="&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;ApplicationServices&lt;/strong&gt;&lt;/span&gt;" &lt;span style="color: #ff0000;"&gt;connectionString&lt;/span&gt;="&lt;span style="color: #0000ff;"&gt;Data Source=.\SQLEXPRESS;Initial Catalog=&lt;strong&gt;ASPNETMembership&lt;/strong&gt;;Integrated Security=SSPI;" providerName="System.Data.SqlClient&lt;/span&gt;" /&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/&lt;span style="color: #800000;"&gt;connectionStrings&lt;/span&gt;&amp;gt;&lt;/p&gt;
&lt;p&gt;I am looking at using SQL Azure &lt;span style="text-decoration: underline;"&gt;&lt;em&gt;JUST&lt;/em&gt;&lt;/span&gt; for Membership, but use ATS for everything else (sessions, etc) in AzureProviders.&amp;nbsp; This would be useful because I have other software that I use to administer the membership data that points to the same SQL membership data store.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Note that on Azure, you must use the updated scripts in order for ASP.NET Membership to work on SQL Azure (see &lt;a href="http://blogs.msdn.com/b/mszcool/archive/2010/02/10/sql-azure-make-asp-net-membership-and-roles-api-work-on-your-cloud-database.aspx"&gt;here&lt;/a&gt;&amp;nbsp;or &lt;a href="http://archive.msdn.microsoft.com/KB2006191"&gt;here&lt;/a&gt;).&lt;/p&gt;&lt;/div&gt;</description><author>roachslayer</author><pubDate>Sun, 23 Oct 2011 00:39:12 GMT</pubDate><guid isPermaLink="false">New Post: SQL Azure Provider 20111023123912A</guid></item><item><title>New Post: MVC3</title><link>http://azureproviders.codeplex.com/discussions/276053</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;The problem is that these are ASP.NET providers, this means they are tightly couples with the ASP.NET plumbings, I think you will be better off implementing your own providers, feel free to cannibalize anything you want from this project thought. This open source project may be a good start for you&amp;nbsp;&lt;a href="https://github.com/TroyGoode/MembershipStarterKit"&gt;https://github.com/TroyGoode/MembershipStarterKit&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><author>ihenriksen</author><pubDate>Mon, 17 Oct 2011 08:01:52 GMT</pubDate><guid isPermaLink="false">New Post: MVC3 20111017080152A</guid></item><item><title>New Post: MVC3</title><link>http://azureproviders.codeplex.com/discussions/276053</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I understand how to use MVC with azure as I'm doing that currently. &amp;nbsp;I want to use the tables that you created and the provider dlls in my mvc application. &amp;nbsp;Do you think that's possible or are your providers so geared towards ASP.Net web forms that it would not be worth the trouble?&lt;/p&gt;&lt;/div&gt;</description><author>cipherz</author><pubDate>Sun, 16 Oct 2011 21:06:54 GMT</pubDate><guid isPermaLink="false">New Post: MVC3 20111016090654P</guid></item><item><title>New Post: MVC3</title><link>http://azureproviders.codeplex.com/discussions/276053</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I'm sorry, but no. Adding MVC would be a major change to the project.&lt;/p&gt;
&lt;p&gt;There is a guide to Azure with MVC3 with sample code here&amp;nbsp;&lt;a href="http://blogs.msdn.com/b/avkashchauhan/archive/2011/05/14/asp-net-mvc3-web-role-deployment-in-windows-azure-sdk-1-4-0-detailed-steps-and-full-sample-code.aspx"&gt;http://blogs.msdn.com/b/avkashchauhan/archive/2011/05/14/asp-net-mvc3-web-role-deployment-in-windows-azure-sdk-1-4-0-detailed-steps-and-full-sample-code.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Inge.&lt;/p&gt;&lt;/div&gt;</description><author>ihenriksen</author><pubDate>Sun, 16 Oct 2011 20:59:36 GMT</pubDate><guid isPermaLink="false">New Post: MVC3 20111016085936P</guid></item><item><title>New Post: MVC3</title><link>http://azureproviders.codeplex.com/discussions/276053</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Do you have a sample MVC3 web role? &amp;nbsp;I would really like to use these providers in MVC but don't know how to integrate with MVC.&lt;/p&gt;
&lt;/div&gt;</description><author>cipherz</author><pubDate>Sun, 16 Oct 2011 12:44:49 GMT</pubDate><guid isPermaLink="false">New Post: MVC3 20111016124449P</guid></item></channel></rss>