我的MVC 6 (beta 7)项目的日志中有一个奇怪的异常:System.IO.IOException ---> Microsoft.Net.Http.Server.WebListenerException: The specified network name is no longer available01:29:55.8901 Error ProcessRequestAsync
System.IO.IOException --->
AppFabricCaching服务崩溃,并记录以下消息:
AppFabric Caching service crashed.{Microsoft.ApplicationServer.Caching.ConfigStoreException: A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 - The specified network name is no longer available.) ---> Syst
在控制台应用程序中读取了一个大的制表符分隔的文本文件后,我正在尝试写入文本文件。问题是,如果我在服务器上并发运行此可执行文件的多个实例,它会在TextWriter.WriteLine出现运行时错误,然后应用程序会因为未处理的异常而崩溃。所有实例都会发生这种情况。我不能理解这种行为的原因。是不是因为我没有使用StringBuilder,它会动态地使用内存? StreamReader sr = new StreamReader(@FilePath, System.Text.Encoding.Default);