找不到引用合同的默认端点元素

时间:2012-10-24 04:08:02

标签: c# wcf

我正在尝试添加网络服务。

这是我的配置文件

 <system.serviceModel>
    <bindings>
      <basicHttpBinding>
        <binding name="Service1Soap" closeTimeout="00:01:00" openTimeout="00:01:00"
          receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false"
          bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" 
          maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
          messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" 
          useDefaultWebProxy="true">
          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
            maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <security mode="None">
            <transport clientCredentialType="None" proxyCredentialType="None"
              realm="" />
            <message clientCredentialType="UserName" algorithmSuite="Default" />
          </security>
        </binding>
      </basicHttpBinding>
    </bindings>
    <client>
      <endpoint address="http://localhost:51272/Service1.asmx" binding="basicHttpBinding"
        bindingConfiguration="Service1Soap" contract="ServiceReference1.Service1Soap" 
        name="Service1Soap"  />
    </client>
  </system.serviceModel>

这是我控制网络服务的控制器。

 ServiceReference1.Service1Soap hs = new ServiceReference1.Service1SoapClient();
 int aa = hs.getStockQty(66);

但是有错误..

enter image description here

我该如何解决? 感谢。

1 个答案:

答案 0 :(得分:1)

我认为端点有多个引用,是否可以删除引用并再次使用其他名称添加引用。

如果不是解决方案很简单。将类库的端点定义(从配置文件中复制)到应用程序的配置文件。

还要检查此合约的名称空间“Service1Soap”