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

My connection string is correct. It works when I debug and run from inside Visual Studio.

My problem is that I need to browse my site from the IIS to be able to access my website from any PC in my network.

When I changed the application pool identity to localsystem, it worked. I am worried that it won't work on any PC in my network, because I have no means to test it.

Can you confirm whether or not it would work?

share|improve this question
1  
How you access it from local pc and machine on network show us urls – Adil Oct 6 '12 at 6:43
1  
Have you tried and checked, whether its working or not...?? – Mayank Pathak Oct 6 '12 at 6:47
1  
Even if you're convinced it's correct - can you please show us your connection string that you use? – marc_s Oct 6 '12 at 6:54

1 Answer

It sounds like you are connecting using windows authentication - ie: "Trusted Connection".

That is why you can connect using Visual Studio - you are using your credentials to connect.

You need to run or impersonate IIS with an account that can connect to SQL Server, or allow IIS to impersonate the connected user, assuming they also have SQL server connection permissions.

share|improve this answer
@vinu: ... and we would be able to see that if the OP would show us the actual connection string he's using ..... – marc_s Oct 6 '12 at 7:09
It is mySql server. I don't think it allows connecting with windows authentication. – Murtuza Kabul Oct 6 '12 at 7:19
@MurtuzaKabul No, I think it is "his" SQL Server 2008 – podiluska Oct 6 '12 at 7:43
@podiluska: How can I run or impersonate IIS with an account that can connect to SQL Server? – vinu Oct 8 '12 at 6:27

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.