gpt4 book ai didi

.net - wcf AddressAlreadyInUseException

转载 作者:行者123 更新时间:2023-12-04 14:13:42 28 4
gpt4 key购买 nike

我已经看过这些帖子:
wcf System.ServiceModel.AddressAlreadyInUseException ,
Windows Service hosted WCF over HTTPS ,
Getting AddressAlreadyInUseException after upgrading to .NET 4.5 ,
他们都没有解决我的问题。
我在 .net 4.5 中有几个 wcf 服务。它们都在同一个地址中,我在 WCF 服务主机中收到此异常:

System.ServiceModel.AddressAlreadyInUseException: HTTP could not register URL https://+:443/mafawcf01/ServicioAddin.svc/ because TCP port 443 is being used by another application. ---> System.Net.HttpListenerException: The process cannot access the file because it is being used by another process
at System.Net.HttpListener.AddAllPrefixes()
at System.Net.HttpListener.Start()
at System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- End of inner exception stack trace ---
at System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
at System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
at System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
at System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
at System.ServiceModel.Channels.DatagramChannelDemuxer`2.OnOuterListenerOpen(ChannelDemuxerFilter filter, IChannelListener listener, TimeSpan timeout)
at System.ServiceModel.Channels.SingletonChannelListener`3.OnOpen(TimeSpan timeout)
at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
at System.ServiceModel.Security.SecurityListenerSettingsLifetimeManager.Open(TimeSpan timeout)
at System.ServiceModel.Channels.SecurityChannelListener`1.OnOpen(TimeSpan timeout)
at System.ServiceModel.Channels.CommunicationObject.Open(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 System.ServiceModel.Security.SecuritySessionSecurityTokenAuthenticator.OnOpen(TimeSpan timeout)
at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
at System.ServiceModel.Security.SecurityUtils.OpenTokenAuthenticatorIfRequired(SecurityTokenAuthenticator tokenAuthenticator, TimeSpan timeout)
at System.ServiceModel.Security.SecuritySessionServerSettings.OnOpen(TimeSpan timeout)
at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
at System.ServiceModel.Security.SecurityListenerSettingsLifetimeManager.Open(TimeSpan timeout)
at System.ServiceModel.Channels.SecurityChannelListener`1.OnOpen(TimeSpan timeout)
at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
at System.ServiceModel.Channels.DelegatingChannelListener`1.OnOpen(TimeSpan timeout)
at System.ServiceModel.Channels.CommunicationObject.Open(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 Microsoft.Tools.SvcHost.ServiceHostHelper.OpenService(ServiceInfo info)
System.Net.HttpListenerException (0x80004005): The process cannot access the file because it is being used by another process
at System.Net.HttpListener.AddAllPrefixes()
at System.Net.HttpListener.Start()
at System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()

这是我的 app.congif:
    <host>
<baseAddresses>
<add baseAddress="https://localhost:443/mafawcf01/ServicioAddin.svc"/>
</baseAddresses>
</host>
</service>
<service name="mafawcf01.ServicioPing" behaviorConfiguration="mafawcf01.ServicioPingBehavior">
<endpoint address=""
binding="basicHttpBinding"
bindingConfiguration="secureHttpBinding"
contract="mafawcf01.IServicioPing">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="https://localhost:443/mafawcf01/ServicioPing.svc" />
</baseAddresses>
</host>
</service>
<service behaviorConfiguration="mafawcf01.Service1Behavior" name="mafawcf01.ServicioCargue">
<endpoint address="https://localhost:443/MafaWCF01/ServicioCargue.svc"
binding="customBinding" bindingConfiguration="myCustomHttpBinding"
contract="mafawcf01.IServicioCargue" />
<endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="https://localhost:443/MafaWCF01/ServicioCargue/" />
</baseAddresses>
</host>
</service>
<service behaviorConfiguration="mafawcf01.Service1Behavior" name="mafawcf01.ServicioValidacionMultiple">
<endpoint address="https://localhost:443/MafaWCF01/ServicioValidacionMultiple.svc"
binding="customBinding" bindingConfiguration="transporteSeguro"
contract="mafawcf01.IServicioValidacionMultiple" />
<endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="https://localhost:443/MafaWCF01/ServicioValidacionMultiple/" />
</baseAddresses>
</host>

我已经用这个命令保留了端口:
netsh http add urlacl url=https://+:443/MafaWCF01

还有一个与端口关联的证书:
netsh http add sslcert ipport=0.0.0.0:443 certhash={some cert hash} appid={some appid}

您需要任何其他信息吗?

最佳答案

万一这对任何人都有帮助。尝试在控制台应用程序中托管 wcf 服务时遇到了同样的问题。我所做的是打开 wcf 服务库的属性(Alt + Enter 或右键单击-> 属性),然后转到属性窗口中的 WCF 选项选项卡,并取消选中“调试同一解决方案中的另一个项目时启动 WCF 服务主机”。那么问题就解决了。

关于.net - wcf AddressAlreadyInUseException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20615405/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com