WCF分佈式開發常見錯誤解決(1):An error occurred while attempting to find services at...添加服務引用出錯
當咱們在客戶端添加WCF服務引用的時候出錯,信息以下
下載「http://localhost:8001/WCFService」時出錯。
沒法鏈接到遠程服務器
因爲目標機器積極拒絕,沒法鏈接。 127.0.0.1:8001
Metadata contains a reference that cannot be resolved: 'http://localhost:8001/WCFService'.
Could not connect to http://localhost:8001/WCFService. TCP error code 10061: 因爲目標機器積極拒絕,沒法鏈接。 127.0.0.1:8001.
沒法鏈接到遠程服務器
因爲目標機器積極拒絕,沒法鏈接。 127.0.0.1:8001
If the service is defined in the current solution, try building the solution and adding the service reference again.
解決辦法:
1.查看防火牆設置。有沒有打開服務端口,好比8001,沒有的話添加服務端口爲安全端口;
2.檢查服務託管進程是否啓動,這個狀況通常是針對自定義宿主來託管服務的狀況,運行服務託管程序。
從新添加WCF服務引用。就能夠成功。