I have a great Silverlight application that I have successfully converted and added a CloudService project. I uploaded the database to SQL Azure and everything works fine from my webconfig file with connecting to this database on SQL Azure. So, my next step, when I collapsed, was to add the Cloud Service to my solution and install this service as a launch.
So, I assume that I am not adding the connection string correctly in ServiceConfiguration.cscfg / ServiceDefinition.csdef
The error I get: error message for Query LoadUsers: System.ServiceModel.DomainServices.Client.DomainOperationException: load operation failed for request "LoadUserInfo". The remote server returned an error: NotFound .....
My connection string looks like this: webconfig:
<add name="LiveEntities" connectionString="metadata=res://*/LiveModel.csdl|res://*/LiveModel.ssdl|res://*/LiveModel.msl;provider=System.Data.SqlClient;provider connection string="Data Source=.;Initial Catalog=Live09092010;Integrated Security=True;MultipleActiveResultSets=True"" providerName="System.Data.EntityClient" />
Do I need to put the same connection string in ServiceConfiguration.cscfg / ServiceDefinition.csdef and what should it look like?
Solution Live
SilverLight App proj 1
Silverlight App proj 2
Silverlight App proj 3...
Live.Web
LiveCloudServices
Roles
source
share