无法加载协定为“WeatherWS.WeatherWebServiceSoap”的终结点配置部分,因为找到了该协定的多个终结点配置。请按名称指示首选的终结点配置部分。
很多初次使用该webservice的人,初次运行时都会报出这样的错误,其根本原因是在webservce在web.config里配置了两次,
例如:
<client>
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="WeatherWSSoap" contract="WeatherWS.WeatherWSSoap" name="WeatherWSSoap" /><endpoint address=""
binding="basicHttpBinding" bindingConfiguration="WeatherWSSoap" contract="WeatherWS.WeatherWSSoap" name="WeatherWSSoap" /> </client>只需要删除一个<endpoint>节点就可以正常运行了!