-1

我在实时服务器和性能问题上不断出现异常。

在 wcf 配置文件中启用跟踪服务日志后,我发现了 100 个相同的异常。

在此处输入图像描述

基本信息

 Activity ID    {00000000-0000-0000-0000-000000000000}
Time    2019-08-26 19:59:44.7454
Level   Error
Source  System.ServiceModel
Process w3wp
Thread  55
Computer    PC3
Trace Identifier/Code   https://docs.microsoft.com/dotnet/framework/wcf/diagnostics/tracing/System-ServiceModel-Diagnostics-ThrowingException

例外

System.IO.PipeException, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089

异常类型

System.IO.PipeException, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089

信息

There was an error reading from the pipe: The pipe has been ended. (109, 0x6d).

这是我正在使用的代码

public static WMC.Proxy.BLLService.BLLServiceClient GetBLLServiceClient()
        {
            var client = new WMC.Proxy.BLLService.BLLServiceClient(settings.GetBinding(settings.BLLServiceBinding), new EndpointAddress(settings.BLLServiceAddress));
            SetMaxGraphInItems(client);
            return client;
        }

我怎样才能解决这个问题?

4

2 回答 2

1

在网上找了很久,发现问题可能与 Enum 类型有关,导致序列化失败。
https://social.msdn.microsoft.com/Forums/vstudio/en-US/ee75d768-fd80-4c2b-831e-1d6dd6d4dd17/there-was-an-error-reading-from-the-pipe-the-pipe- has-been-ended-109-0x6d?forum=wcf
WCF NamedPipe CommunicationException - “管道已结束。(109, 0x6d)。”
造成这个问题的因素很多,包括数据合同、服务合同的不规范。归结为序列化存在问题的事实。请参考下面的讨论,希望对您有用。
http://gonetdotnet.blogspot.com/2014/07/solved-there-was-error-reading-from.html
https://blogs.infosupport.com/there-was-an-error-reading-from-the-pipe-unrecognized-error/
如果问题仍然存在,请随时告诉我。

于 2019-08-27T03:27:18.633 回答
0

可以肯定的是,这里是跟踪侦听器的 web.config 部分:

<system.diagnostics>  
<sources>  
  <source name="System.ServiceModel.MessageLogging" switchValue="Warning, ActivityTracing"><listeners><add name="xml" /></listeners></source>  
  <source name="System.ServiceModel" switchValue="Information, ActivityTracing" propagateActivity="true"><listeners><add name="xml" /></listeners></source>  
  <source name="CardSpace"><listeners><add name="xml" /></listeners></source>
  <source name="System.IO.Log"><listeners><add name="xml" /></listeners></source>
  <source name="System.Runtime.Serialization"><listeners><add name="xml" /></listeners></source>
  <source name="System.IdentityModel"><listeners><add name="xml" /></listeners></source>
</sources>
<sharedListeners>  
  <add name="xml" type="System.Diagnostics.XmlWriterTraceListener" initializeData="D:\PutYourPathHere.svclog" />  
</sharedListeners>  
</system.diagnostics> 

可以使用 Microsoft Service Trace Viewer 检查生成的文件。

尝试检查其他事件。可能有一些与合同相关的问题导致序列化失败。

如果您绝对确定您的合同和序列化没有问题,请尝试重新启动“Net.Pipe Listener Adapter”服务。

如果这没有帮助,请尝试回收应用程序池。

我们可以在新版本或配置更新后不时看到这些问题。它们与先前实例的错误通信终止有关。

于 2019-08-27T12:57:12.150 回答