无法找到端点异常 - WCF Web服务

时间:2012-04-26 21:06:05

标签: c# wcf web-services soap

我无法使双工Web服务正常工作,我收到此错误:

  

找不到引用合同的默认端点元素   ServiceModel客户端配置部分中的“IService1”。这个   可能是因为没有为您的应用程序找到配置文件,   或者因为找不到与此合同匹配的端点元素   在客户端元素中。

这是我的单元测试试图访问该服务引发的。我发现了类似的SO问题:

Could not find default endpoint element

WCF Error - Could not find default endpoint element that references contract 'UserService.UserService'

答案是“将配置文件包含到另一个项目中”,但究竟是什么意思呢?

  • 我是否将服务编译成DLL并包含它?
  • 我是否复制“system.serviceModel”中包含的所有内容或其中的一部分?
  • 与端点有什么关系?

编辑:配置文件

的Web.config

<?xml version="1.0"?>
<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
      <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior name ="svcbh">
          <serviceMetadata httpGetEnabled="False"/>
          <serviceDebug includeExceptionDetailInFaults="False"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <!--<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />-->
    <services>
      <service name ="Test_Duplex.Service1" behaviorConfiguration ="svcbh" >
        <host>
          <baseAddresses>
            <add baseAddress = "http://localhost:3857/Service1.svc" />
          </baseAddresses>
        </host>
        <endpoint name ="duplexendpoint"
                  address =""
                  binding ="wsDualHttpBinding"
                  contract ="Test_Duplex.IService1"/>
        <endpoint name ="MetaDataTcpEndpoint"
                  address="mex"
                  binding="mexHttpBinding"
                  contract="IMetadataExchange"/>
      </service>
    </services>
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
</configuration>

output.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.serviceModel>
        <bindings>
            <wsDualHttpBinding>
                <binding name="duplexendpoint" closeTimeout="00:01:00"      openTimeout="00:01:00"
                    receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false"
                    transactionFlow="false" hostNameComparisonMode="StrongWildcard"
                    maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                    messageEncoding="Text" textEncoding="utf-8"   useDefaultWebProxy="true">
                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                    <reliableSession ordered="true" inactivityTimeout="00:10:00" />
                    <security mode="Message">
                        <message clientCredentialType="Windows" negotiateServiceCredential="true"
                            algorithmSuite="Default" />
                    </security>
                </binding>
            </wsDualHttpBinding>
        </bindings>
        <client>
             <endpoint address="http://localhost:3857/Service1.svc" binding="wsDualHttpBinding"
                bindingConfiguration="duplexendpoint" contract="Test_Duplex.IService1"
                name="duplexendpoint">
                <identity>
                    <userPrincipalName value="12680@altus.local" />
                </identity>
            </endpoint>
        </client>
    </system.serviceModel>
</configuration>

2 个答案:

答案 0 :(得分:1)

配置文件存在问题。 生成配置文件时,它不会完全指定类型的命名空间。 通常,您只需要<Namespace>.IService1

答案 1 :(得分:1)

我将 wsdl 生成的文件(Service1.svc,output.config)转换为服务引用,而是从那里获取我的类定义。您也可以看到tutorials这样做。

因为我的老板教我用命令提示符来做这件事,所以它一定刚刚滑过我的脑袋。

这修复了“端点未找到”错误。