我看到有幾個類似的話題在網上和SO關於這個,但他們都沒有幫助我解決這個問題。沒有端點在[url]監聽,可以接受消息
我有一個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>
編輯:忘了提,如果我嘗試使用來自本地環境的生產服務,它工作正常!
你爲什麼在相同的過程中託管服務和消費者?這意味着零。 –
@hugh - 好的,原因如下 - 我有多個同一個Web應用程序的實例,它們服務於不同的組織。有問題的服務公開它運行的實例的某些數據(這些數據可能因實例而異)。每個實例都知道在其他實例中運行的其他服務(服務的URL存儲在數據庫中)。 Web應用程序中有一個特定的模塊,它基本上從它知道的所有服務中提取數據並顯示它。所以基本上目的是顯示相關組織的數據。 – 1nfected
因此,您的每個服務都在不同的w3wp.exe實例中運行?每個Web應用程序的客戶端也只調用在不同的w3wp進程中運行的服務? –