嘗試創建將SOAP請求發送到Web服務(並獲取結果)的C#客戶端(將開發爲Windows服務)。 enter image description here客戶端發送SOAP請求
它打破
HttpWebResponse wr = (HttpWebResponse)httpRequest.GetResponse();
錯誤:
An unhandled exception of type 'System.Net.WebException' occurred in System.dll
Additional information: The remote server returned an error: (500) Internal Server Error.
這只是意味着服務器存在配置錯誤或其他一些問題,導致無法完成請求。您的Web服務客戶端可以做正確的事情。你有權訪問服務器?此外,該服務是否包含wsdl? –