2016-06-22 6 views
0

私はこのような質問がたくさんあることを知っています。インスタンスが見つかりませんSQL、WCF、IIS

私はWindows Server 2012 R2サーバーに私のWCFを公開し、IISで私のサービスをホストしました。

サービスとSQLの両方がうまく機能するのは、サービスからSQLからデータを呼び出そうとするときです。このエラーが発生します。

The server encountered an error processing the request. Please see the service help page for constructing valid requests to the service. The exception message is 'A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)'. See server logs for more details.

なぜでしょうか?

答えて

0

チェック、接続文字列

else

修正/回避策/ソリューションにおけるサーバ名:

Step 1) Make sure SQL SERVER is up and the instance you try to connect is running. 

Step 2) Your system Firewall should not block SQL Server port.

Step 3) Go to Computer Management >> Service and Application >> SQL Server 2012 Configuration >> Network Configuration 

HELP

Help link

+0

add name = "DbConnection" connectionString = "データソース=サーバー名;初期カタログ= MyDatabase;セキュリティ情報を保持する= False;統合セキュリティ= SSPI; providerName = "System.Data.SqlClient" /> –

+0

これをIISまたはサービスのMy Connection文字列に追加する必要がありますか。 –

+0

"データソース=ローカルホスト" の代わりに "データソース= MYSERVER \ MyInstance" –

関連する問題