zoukankan      html  css  js  c++  java
  • 无法加载协定为“ServiceReference1.xxxxxx”的终结点配置部分,因为找到了该协定的多个终结点配置。请按名称指示首选的终结点配置部分。

    原因是在web.config 文件中多次引用了“添加外部引用”

     <system.serviceModel>
      <bindings>
       <basicHttpBinding>
        <binding name="WebServiceSoap" />
        <binding name="WebServiceSoap1" />
       </basicHttpBinding>
      </bindings>
      <client>
       <endpoint address="http://localhost:8054/WebService.asmx" binding="basicHttpBinding"
        bindingConfiguration="WebServiceSoap" contract="ServiceReference.WebServiceSoap"
        name="WebServiceSoap" />
       <endpoint address="http://localhost:8054/WebService.asmx" binding="basicHttpBinding"
        bindingConfiguration="WebServiceSoap1" contract="ServiceReference.WebServiceSoap"
        name="WebServiceSoap1" />
      </client>
     </system.serviceModel> 

    所以删掉一个节点既可(如查引用的是WebServiceSoap,删掉WebServiceSoap1的有关节点,反之~)

    也可以在页面引用的时候指定bindingConfiguration名字:

    如:ServiceReference.WebServiceSoap web = new WebServiceSoapClient("WebServiceSoap");

  • 相关阅读:
    简单工厂模式实例
    浅析面向对象和面向过程
    equals与“==”的区别
    IIS挂起网站配置文件地址
    先安装win7时IIS的安装
    验证码的使用
    c#引用命名空间的作用
    ADO与ADO.NET的区别
    常用的数据库访问方式
    Exercise 11: Asking Questions
  • 原文地址:https://www.cnblogs.com/JuneZhang/p/6776186.html
Copyright © 2011-2022 走看看