我在事件查看器中遇到异常。例外是与wcf相关的。
An error occurred in the Activation Service 'NetPipeActivator' of the protocol 'net.pipe' while trying to listen for the site '2', thus the protocol is disabled for the site temporarily. See the exception message for more details.
URL: WeakWildcard:net.pipe://Pc4/
Status: ConflictingRegistration
Exception:
Process Name: SMSvcHost
Process ID: 1724我怎么才能修复它?
发布于 2019-08-20 16:15:21
我们不能在IIS中有两个具有相同网络命名管道绑定的网站。因为netnamdpipebinding机制服务只能接收来自同一台机器的调用,所以管道名称是管道地址的唯一标识符串。我们只能在同一台计算机上打开一个命名管道,因此两个命名管道地址不能在同一台计算机上共享相同的管道名称。
https://stackoverflow.com/questions/57556948
复制相似问题