On my Windows 7 64bit system I have IIS 7, and VS2010 Ultimate running with all of the Azure and .Net SDKs and toolkits. I can build the Default Coud Service ASP.Net Web Role Project with a serice to retreive data from an azure
sql. I created a silverlight client that calls this WCF in the web role, but when I hit F5, I get the following Error:
Windows Azure Tools: Failed to initialize Windows Azure storage emulator. Unable to start Development Storage. Failed to start Development Storage: the SQL Server instance ‘localhost\SQLExpress’ could not be found. Please configure the SQL Server
instance for Development Storage using the ‘DSInit’ utility in the Windows Azure SDK.
I noticed in the web.config the folowing
<add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true"
providerName="System.Data.SqlClient" />
I changed it to connect to the same db but on my remote sql (I dont have sqlepresss on my dev machine), tried again but getting the same error