Link to home
Start Free TrialLog in
Avatar of SwatiBhaskar
SwatiBhaskar

asked on

SQL Server 2005 named pipes error when using web services

I'm consuming a web service from within a ASP.NET application. I get the following error when I try to execute a web method from within the application -

System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Data.SqlClient.SqlException: An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)
   at Documents.GetStatements(String clientId, String accountNumber, String begDate, String endDate)
   --- End of inner exception stack trace ---

Since the web service is an external one (hosted by a third party vendor), I'm unable to view the SQL Server settings, but I'm sure that remote connections are allowed. Is this an issue with the those settings or can I sort this out at client side here itself?

Thanks.
Avatar of TheMegaLoser
TheMegaLoser
Flag of Sweden image

There are two types of remote connections, both TCP/IP and named pipes. By default both are disabled.

Without knowing the SQL Server configuration this is only a guess but could it be that TCP/IP is enabled and named pipes disabled? That's the way we run the servers at least to minimize the active surface areas.

Have you tried changing your connection string to use TCP/IP instead of named pipes?

If you're unsure on how to do it, post the connection string here and I'll help. Do not post the user name or password in the connection string though but replace them with bogus values.
Avatar of SwatiBhaskar
SwatiBhaskar

ASKER

Thank you for your response.

Since I'm consuming a third party web service, the SQL connection string is not exposed to me - I only reference the web service from within my code.

I'm corresponding with the third party vendor in order to get this sorted out - in the meantime, can you share a sample connection string that uses TCP/IP instead of named pipes?

Thanks.
ASKER CERTIFIED SOLUTION
Avatar of TheMegaLoser
TheMegaLoser
Flag of Sweden image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial