我们昨天在构建服务器上遇到了类似的错误。我们的异常是由 DataContractSerializer 的 ReadObject() 方法引发的。
System.InvalidProgramException: Common Language Runtime detected an invalid program.
at System.Xml.EncodingStreamWrapper..ctor(Stream stream, Encoding encoding)
at System.Xml.XmlUTF8TextReader.SetInput(Stream stream, Encoding encoding, XmlDictionaryReaderQuotas quotas, OnXmlDictionaryReaderClose onClose)
at System.Xml.XmlDictionaryReader.CreateTextReader(Stream stream, Encoding encoding, XmlDictionaryReaderQuotas quotas, OnXmlDictionaryReaderClose onClose)
at System.Xml.XmlDictionaryReader.CreateTextReader(Stream stream, XmlDictionaryReaderQuotas quotas)
at System.Runtime.Serialization.XmlObjectSerializer.ReadObject(Stream stream)
我们编写了一个控制台应用程序,它只做这件事。它运行没有错误,但在简单的单元测试中失败。我们将 Gallio/MbUnit 3.4.11.0 用于我们的测试框架,目标是 .net 4.0。
using System;
using System.IO;
using System.Runtime.Serialization;
using MbUnit.Framework;
namespace TestApp
{
[TestFixture]
class Program
{
static void Main()
{
FooBar();
Console.ReadKey();
}
public static void FooBar()
{
var type = typeof(string);
var foo = "foo";
using (var stream = new MemoryStream())
{
var serializer = new DataContractSerializer(type);
serializer.WriteObject(stream, foo);
stream.Seek(0, SeekOrigin.Begin);
var deserializer = new DataContractSerializer(type);
var bar = deserializer.ReadObject(stream);
Console.WriteLine(bar);
}
}
[Test]
public void Test()
{
FooBar();
}
}
}
应用程序运行良好,但测试失败。奇怪的是,这个测试通过了我的开发箱,但在我们的构建服务器以及同事的开发箱上失败了。显然,我的开发盒有一些不同之处可以让测试通过,但我还没有找到那个不同之处。
更新 1
我的开发盒上 System.dll 的版本是 4.0.30319.296,但在构建服务器和我同事的开发盒上是 4.0.30319.1001。然而,System.Xml.dll 和 System.Runtime.Serialization.dll 在 4.0.30319.1 中是相同的。
更新 2
在 Google 上快速搜索“4.0.30319.1001”会返回此安全更新,http://support.microsoft.com/kb/2742595,它适用于我们的构建服务器和我同事的开发盒,但不是我的开发箱。我卸载了构建服务器上的更新,重新启动,问题就消失了!我猜微软还没有对此进行单元测试。:-)