私はこのような質問がたくさんあることを知っています。インスタンスが見つかりません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.
なぜでしょうか?
add name = "DbConnection" connectionString = "データソース=サーバー名;初期カタログ= MyDatabase;セキュリティ情報を保持する= False;統合セキュリティ= SSPI; providerName = "System.Data.SqlClient" /> –
これをIISまたはサービスのMy Connection文字列に追加する必要がありますか。 –
"データソース=ローカルホスト" の代わりに "データソース= MYSERVER \ MyInstance" –