我嘗試調用Web服務。我在Visual Studio https://gate.smsclub.mobi/soap/soapGateway.wsdl添加引用Web服務,我嘗試從這個服務調用的方法我有例外(在這個截圖除外)http://s020.radikal.ru/i709/1510/a6/32a6d38ecf7a.png 我的代碼:當我調用Web服務時出現無效操作異常Visual Studio
smsGatewayPortTypeClient sms = new smsGatewayPortTypeClient("smsGatewayPort");
app.config文件
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="smsGatewayBinding" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://gate.smsclub.mobi/soap/" binding="basicHttpBinding"
bindingConfiguration="smsGatewayBinding" contract="ServiceReference1.smsGatewayPortType"
name="smsGatewayPort" />
</client>
</system.serviceModel>
@anekcahap你可以採取錯誤的截圖中英文 – Webruster
異常類型「System.InvalidOperationException」出現在System.ServiceModel.dll,但它並沒有在用戶處理代碼 有關詳細信息:無法找到名稱爲「smsGatewayPort」和合同「ServiceReference1.smsGatewayPortType」部分的端點元素客戶端配置 –
請參閱此[鏈接](http://www.paraesthesia.com/archive/2008/11/) 26 /讀WCF配置-從-A-定製location.aspx /) – Webruster