Click here to Skip to main content
15,891,906 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am in the process of deploying web application to remote server using one-click publisher.
I have an entity framework between the database and the app.
--how do the entity framework files get deployed to remote server?
(I made a copy on the server, but pretty sure that is not right)

I modified the connection string in the web.config file from:
<add name="SomethingsDatabaseEntities" 
         connectionString="metadata=res://*/DAL.RetEntities.csdl|res://*/DAL.RetEntities.ssdl|res://*/DAL.RetEntities.msl;
         provider=System.Data.SqlClient;
         provider connection string="data source=.\SQLEXPRESS;
         attachdbfilename=|DataDirectory|\SomethingsDatabase.mdf;
         integrated security=True;
         user instance=True;
         multipleactiveresultsets=True;
         App=EntityFramework"" 
         providerName="System.Data.EntityClient"/>

to the following:
<add name="CalendarsDatabaseEntities"
 connectionString="metadata=res://*/DAL.RetEntities.csdl|res://*/DAL.RetEntities.ssdl|res://*/DAL.RetEntities.msl;
     provider=System.Data.SqlClient;
     provider connection string="data source=servername;User ID=username;Password=*****;Initial Catalog=SomethingsDatabase;
     integrated security=True;
     user instance=True;
     multipleactiveresultsets=True;
     App=EntityFramework""
 providerName="System.Data.EntityClient"/>

but I get the following error:
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.SqlClient.SqlException: Login failed for user "****"

anyone know a resource on how to do this? (everything already works on local host)
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900