2009-08-20 199 views
0

我在Windows託管服務中託管WCF服務。在Windows 2008的Windows服務中託管WCF(mex endpoint)服務

當我開始WHS的,我得到以下錯誤:


The ChannelDispatcher at 'net.tcp://mysecreturl/' with contract(s) '"IClass"' is unable to open its IChannelListener. 

System.InvalidOperationException: A registration already exists for URI 'net.tcp://mysecreturl/Indexer/'. 
    at System.ServiceModel.Channels.UriPrefixTable`1.RegisterUri(Uri uri, HostNameComparisonMode hostNameComparisonMode, TItem item) 
    at System.ServiceModel.Channels.ConnectionOrientedTransportManager`1.Register(TransportChannelListener channelListener) 
    at System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener) 
    at System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback) 
    at System.ServiceModel.Channels.ConnectionOrientedTransportChannelListener.OnOpen(TimeSpan timeout) 
    at System.ServiceModel.Channels.TcpChannelListener`2.OnOpen(TimeSpan timeout) 
    at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout) 
    at System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout) 

    at System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout) 
    at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout) 
    at System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout) 
    at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout) 
    at VBoD.Search.WindowsServiceHost.WindowsServiceHost.OnStart(String[] args) in D:\......:line 29 

System.ServiceModel 

難道這些地方在Windows或者是他們註冊與未註冊的時候我開始/停止的過程?

+0

您是否嘗試在與服務端點相同的uri上託管mex端點? – 2009-08-20 00:55:45

+0

您是否完全確定此問題與您的配置無關?這就是爲什麼你沒有發佈你的WCF配置?此外,這看起來不像完整的例外。請發佈整個事情。也許趕上例外併發布ex.ToString()的結果。 – 2009-08-20 00:59:39

回答

2

爲Mex使用diffeent端點。它可能需要一個與你的net.tcp端口不同的端口號。如果您的net.tcp端口是8000,那麼請嘗試

<endpoint address="net.tcp://mysecreturl:8001/Mex" 
      contract="IMetadataExchange" /> 
+0

不要忘記綁定!結合= 「mexTcpBinding」 – 2009-08-20 05:10:53

相關問題