2

私はそれを消費するためのwcfサービスURL、プライベートおよびパブリック証明書を提供されています。

My url is https:/xxxx.com/xxxx/xxxx.svc
my private certificate is xxx.pfx
my public certificate is xxxx.cer

クライアントアプリケーションからサービス参照を追加しようとすると、次のエラーがスローされます。

There was an error downloading 
'https://xxxx.com/xxxx/xxxx.svc'.
The underlying connection was closed: 
An unexpected error occurred on a receive.
Unable to read data from the transport connection: 
An existing connection was forcibly closed by the remote host.
An existing connection was forcibly closed by the remote host
Metadata contains a reference that cannot be resolved: 
'https://xxxx.com/xxxx/xxxx.svc'.
An error occurred while receiving the HTTP response to   
https://xxxx.com/xxxx/xxxx.svc. 
This could be due to the service endpoint binding not using the HTTP protocol. 
This could also be due to an HTTP request context being aborted by the server 
(possibly due to the service shutting down).   
See server logs for more details.
The underlying connection was closed: An unexpected error occurred on a receive.
Unable to read data from the transport connection:
An existing connection was forcibly closed by the remote host.
An existing connection was forcibly closed by the remote host
If the service is defined in the current solution, 
try building the solution and adding  the service reference again.

個人の信頼できる人、信頼できる発行元のフォルダーに証明書をインストールしています。サーバー構成を確認するためのサーバーへのアクセス権がありません。しかし、これは別のクライアントで機能していると言われています。証明書のインストールをめちゃくちゃにしていると確信しています。誰かが私を正しい方向に向けることができれば素晴らしいと思います。

ありがとう、

エセン

4

2 に答える 2

1

サーバーで何が起こっているかを確認するためにトレースを有効にする必要があります。投稿したエラーメッセージはより一般的です。

http://msdn.microsoft.com/en-us/library/ff648360.aspx http://msdn.microsoft.com/en-us/library/ms733025.aspx

于 2012-09-07T17:12:21.773 に答える
0

まず、プロジェクトからサービス参照を削除し、web.config から system.ServiceModel セクションを削除して、サービス参照を再度追加してください。これにより、VS は system.ServiceModel セクションを完全に再構築します。これで問題が解決しない場合は、追加の wcf クライアント構成が必要です。証明書を使用するように wcf クライアントを適切に構成する方法の優れたサンプルを次に示します。

http://www.codeproject.com/Articles/28248/Securing-WCF-Services-with-Certificates

この後も問題が発生する場合は、カスタム endpointBehavior が欠落している可能性があります。この場合、wcf サービス プロバイダーに連絡する必要があります。

于 2012-08-31T17:20:21.650 に答える