没有显示端点

我有一个WCF服务,它有一个端点,我在配置文件中设置了服务契约和操作契约,但是当我运行这个服务时,虽然我在web.config中配置了它,却找不到端点。

此服务将在IIS中设置,因此我没有基地址设置。

ServiceContract的配置名称为agent_port_type,服务行为的配置名称为agent_service。 我正在使用basicHttpBinding。

以下是我的配置文件的一部分的副本:

 <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior name="ETAOutboundServiceBehavior">
          <serviceMetadata httpGetEnabled="true"  httpsGetEnabled="true"  />
          <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
        <behavior name="Metadata">
          <serviceMetadata httpGetEnabled="true"  httpsGetEnabled="true" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <services>
      <service behaviorConfiguration="ETAOutboundServiceBehavior" name="agent_service">
        <clear />
        <endpoint address="" name="agent_interface" binding="basicHttpBinding" contract="agent_port_type"
          listenUriMode="Explicit" />
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"
          listenUriMode="Explicit" />
      </service>
    </services>
    <protocolMapping>
        <add binding="basicHttpsBinding" scheme="https" />
    </protocolMapping>    
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
  </system.serviceModel>

任何帮助,将不胜感激。 我有它在不同的服务工作正常,但后来我用svcutil创建agent_port_type,它不工作。


您应该尝试将配置简化为Works,然后根据需要添加其他选项。

从...开始:

  • 删除清除标签
  • 删除对HTTPS的所有引用
  • 删除listenURIMode

  • 为端点添加地址

  • 检查您正在调用您认为正在调用的服务的IIS日志

  • 向您的配置添加语法错误并检查它是否失败(以确保您正在编辑的配置文件是正在使用的配置文件)
  • 链接地址: http://www.djcxy.com/p/87199.html

    上一篇: Endpoint is not showing

    下一篇: Could not find default endpoint element that references contract