在[url]没有可以接受该消息的端点

时间:2012-12-12 15:10:35

标签: wcf

我看到网上有几个类似的主题,关于此问题,但没有一个对我有帮助解决这个问题。

我有一个wcf服务,它由IIS中的同一个Web应用程序(不要问为什么)托管和使用。 所以我的web.config看起来像这样

<system.serviceModel>
    <services>
        <service name="Management.Service.ManagementService" behaviorConfiguration="Management.Service.ManagementServiceBehavior">
            <endpoint name="default" binding="basicHttpBinding" bindingConfiguration="default" contract="Management.Service.IManagementService" />
        </service>
    </services>
    <behaviors>
        <serviceBehaviors>
            <behavior name="Management.Service.ManagementServiceBehavior">
                <serviceMetadata httpGetEnabled="true"/>
                <serviceDebug includeExceptionDetailInFaults="true"/>
            </behavior>
        </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
    <bindings>
        <basicHttpBinding>
            <binding name="default" closeTimeout="00:01:00" openTimeout="00:01:00"
                     receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false"
                     bypassProxyOnLocal="true" hostNameComparisonMode="StrongWildcard"
                     maxBufferSize="2147483647" maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647"
                     messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                     useDefaultWebProxy="false">
                <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://www.example.com/Service.svc"
            binding="basicHttpBinding" bindingConfiguration="default"
            contract="Management.Client.IManagementService" name="default" />
    </client>
</system.serviceModel>

这在我的本地环境中工作得非常好,我甚至可以在任何浏览器中浏览到服务(生产)。但出于某种原因,我在生产服务器上收到There was no endpoint listening错误。

我还尝试在<system.serviceModel>标记之后添加以下块以启用跟踪,但是我没有看到生成任何跟踪文件。

<system.diagnostics>
    <sources>
        <source name="System.ServiceModel" switchValue="Information, ActivityTracing" propagateActivity="true" >
            <listeners>
                <add name="xml"/>
            </listeners>
        </source>
        <source name="System.ServiceModel.MessageLogging">
            <listeners>
                <add name="xml"/>
            </listeners>
        </source>
    </sources>
    <sharedListeners>
        <add initializeData="C:\inetpub\WcfClient.svclog" type="System.Diagnostics.XmlWriterTraceListener" name="xml"/>
    </sharedListeners>
</system.diagnostics>

编辑:忘记提及,如果我尝试从本地环境使用生产服务,它运行正常!

2 个答案:

答案 0 :(得分:2)

嗯,原来是一个完全不同的问题。 事实证明,Web应用程序(实际上是服务)是从服务器本身无法访问的,即如果我尝试从服务器本身浏览该站点,我将收到“找不到页面”消息。

答案 1 :(得分:0)

我也有同样的问题。在我的情况下,我正在拨打电话的服务器有防火墙问题。他们没有打开防火墙。他们打开之后问题就解决了。