I am developing a web application using VS2012 and SQL server 2008 using windows authentication. When I am executing my application from my local VM it;s connecting to the database and working properly. But when I published the applictaion in a server IIS it is giving this error."no process is on the other end of the pipe". Both are using d same database server. here is my connection string.
<connectionStrings>
<add name="DbConnectionString" connectionString="Data Source=XXXXXX200;Initial Catalog=XXXXX_XXXXX;Integrated Security=SSPI;" providerName="System.Data.SqlClient"/>
</connectionStrings>
Even tried with
Integrated Security=true; and Trusted_Connection=yes;
And also by removing
providerName="System.Data.SqlClient".
But still it's giving error. But the same thing is working fine from development environment. But note from hosted server.
Can you please help me where and what I am missing.