Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a web project (c# asp.net, EF 4 and MS SQL 2008 & IIS 7)

I need to move my website (that was working with no problem in CASSINI) to IIS 7 locally.

So locally in IIS I have my Default Web Site with my deploy. Both my deploy and Default Web Site are on pool ASP.NET v4.0 (look image for the setting) the pool target framework 4 as my web project. enter image description here When browsing the site, the browser does not show the page and allow the browser to downalod the page instead.

Using the Event Logger I see this errors.

I have other project running on IIS locally and they run no problem (but they do not use EF). It is more that 8 hours I try to fix it but with no success ... any ideas? many thanks guys!

Exception information: 
    Exception type: EntityException 
    Exception message: The underlying provider failed on Open.
   at System.Data.EntityClient.EntityConnection.OpenStoreConnectionIf(Boolean openCondition, DbConnection storeConnectionToOpen, DbConnection originalConnection, String exceptionCode, String attemptedOperation, Boolean& closeStoreConnectionOnFailure)


    Login failed for user 'IIS APPPOOL\ASP.NET v4.0'.
       at System.Data.ProviderBase.DbConnectionPool.GetConnection(DbConnection owningObject)
       at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection)
       at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)
       at System.Data.SqlClient.SqlConnection.Open()
       at System.Data.EntityClient.EntityConnection.OpenStoreConnectionIf(Boolean openCondition, DbConnection storeConnectionToOpen, DbConnection originalConnection, String exceptionCode, String attemptedOperation, Boolean& closeStoreConnectionOnFailure)

my related question

UPDATE: You can read in the resources in this page that permission must be grant on MS SQL 2008 manually as arift explain in his answer. Using IIS 7.5 and MS SQL 2008 R2 manual setting for the permission should not be necessary.

share|improve this question
2  
have you allowed the app pool identity permission on the website folder? – Christian Oct 8 '11 at 16:46
i'm not sure, could you please tell me how to do it? – GibboK Oct 8 '11 at 16:47
actually, as adrift says, this could be an sql security issue. You are best to set an NT User account for the AppPool and then grant that permission to the website folder and to the appropriate tables in SQL – Christian Oct 8 '11 at 16:53
thanks Christina, i follow your resource and all is the setting for IIS and the folder seems as described, still I have the same problem :-( – GibboK Oct 8 '11 at 17:02

7 Answers

up vote 115 down vote accepted

You can change the ApplicationPoolIdentity from IIS7 -> Application Pools -> Advanced Settings. AdvancedSettings

Under ApplicationPoolIdentity you will find local system. This will make your application run under NT AUTHORITY\SYSTEM, which is an existing login for the database by default.

share|improve this answer
10  
@GibboK, If you are concerned about security, don't do this. See technet.microsoft.com/en-us/library/dd378907(v=WS.10).aspx – adrift Mar 30 '12 at 12:22

Looks like it's failing trying to open a connection to SQL Server.

You need to add a login to SQL Server for IIS APPPOOL\ASP.NET v4.0 and grant permissions to the database.

In SSMS, under the server, expand Security, then right click Logins and select "New Login...".

In the New Login dialog, enter the app pool as the login name and click "OK".

enter image description here

You can then right click the login for the app pool, select Properties and select "User Mapping". Check the appropriate database, and the appropriate roles. I think you could just select db_datareader and db_datawriter, but I think you would still need to grant permissions to execute stored procedures if you do that through EF. You can check the details for the roles here.

share|improve this answer
1  
thanks, I did what you sad, now i receive this error: Cannot open database "SiteNameExtension" requested by the login. The login failed. Login failed for user 'IIS APPPOOL\DefaultAppPool'. – GibboK Oct 8 '11 at 17:11
I change the POOL for my website.. cannot login.. any ideas? many thanks for your help! – GibboK Oct 8 '11 at 17:11
adrift many many many thanks!!!! i solved the issue. You help me very much and save my saturday night. once again thanks! – GibboK Oct 8 '11 at 17:20
@GibboK, you're welcome :) – adrift Oct 8 '11 at 17:23
you do not have idea how many hours I spent on this without success. and thanks to your answer now is solved :-) have a nice day!! – GibboK Oct 8 '11 at 17:29

I hate the ApplicationPoolIdentity. I always set a Windows User Account as the account on AppPools.

As adrift says, it does sound like a database security issue. So create an NT user account, assign it to the ASP.NET v4.0 AppPool and then grant it permission on the website folder and to the relevant table(s) in SQL.

share|improve this answer
sorry, no idea how to do it, could you point me out a tutorial? thanks for your help on this – GibboK Oct 8 '11 at 17:03
Don't do this, there is a reason IIS changed the app pool identity, learn.iis.net/page.aspx/624/application-pool-identities – LeSnip3R Jul 9 '12 at 20:22

Setting the identity only makes this work in my pages.

share|improve this answer

I had this issue and it was actually caused by something different - I had the 'IIS APPPOOL\ASP.NET v4.0' user in my database but it still wasn't working.

I had recently upgraded my SQL Server Install and in the process the User had become disconnected from the Login - so there was an 'IIS APPPOOL\ASP.NET v4.0' under Database -> Security -> Users BUT no User not under Security -> Logins.

Added the Login 'IIS APPPOOL\ASP.NET v4.0' to Security -> Logins, SQL Server automatically mapped it to the User in the database (this used to have to be done manually) and problem fixed.

share|improve this answer

ensure you have...

Trusted_Connection=false;

in your connection String

share|improve this answer
care to elaborate? – Chris B Jul 24 '12 at 9:22
Having Trusted_Connection=true in the connection string will override the SQL authentication values with the IIS Identity user profile. – Jeff the Bear Feb 10 at 8:34

For detail, check this forum ....

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.