我尝试使用Json.NET通过http请求序列化一个类进行传输。这是一个客户端服务器测试程序,它共享一些常见的类文件。这些文件是一个接口(ITestCase
)以及此接口的实现(TestPicture
,TestVideo
)。
在同一个应用程序中对下面的testCase
进行序列化和反序列化工作正常,大概是因为Json.NET代码都包含在一个程序集中。当我序列化testCase
时,将其发送到服务器,然后尝试反序列化,我收到错误
"Error resolving type specified in JSON 'com.test.testcases.TestPicture, Graphics Tester'. Path '$type', line 2, position 61"
"Could not load assembly 'Graphics Tester'."
在Json.NET documentation中,生成Json时,$ type值为"$type": "Newtonsoft.Json.Samples.Stockholder, Newtonsoft.Json.Tests"
。第二个参数似乎通过命名空间引用相关的类,而不是像我在实例中发生的项目名称(即Graphics Tester)那样引用。
鉴于两个项目共享必需的类并且文件位于同一名称空间中,为什么Json.NET要查找程序集而不是类本身?
以下是我的代码的骨架;由于他们没有帮助解决问题,因此可以省略详细信息。显示的是接口,以及该接口的两个实现。还显示了序列化和反序列化操作,以及由此产生的Json。
ITestCase testCase = new TestPicture("test.jpg")
string json = JsonConvert.SerializeObject(testCase, Formatting.Indented, new JsonSerializerSettings
{
TypeNameHandling = TypeNameHandling.Objects,
});
ITestCase instance = JsonConvert.DeserializeObject<ITestCase>(json, new JsonSerializerSettings
{
TypeNameHandling = TypeNameHandling.Objects,
});
//value in variable json after serialisation
//{
// "$type": "com.test.testcases.TestPicture, Graphics Tester",
// "filename": "test.jpg",
// "testPoints": null
//}
单个类文件:
namespace com.test.testcases
{
interface ITestCase
{
void Run();
bool Verify();
}
}
namespace com.test.testcases
{
class TestPicture : ITestCase {}
}
namespace com.test.testcases
{
class TestVideo : ITestCase {}
}
我的解决方案:
比我预期的更简单的解决方案。它不是最佳的,但它确实有效。我将它更多地归类为变通方法或黑客攻击。通过更改项目属性并在两个项目中将程序集名称设置为相同,它将找到已包含在项目中的类,从而创建由Json字符串指定的对象。
答案 0 :(得分:3)
$type
对完全限定的类型名称进行编码,如果客户端和服务器没有使用相同的项目来定义这些类型,则它们将在客户端和服务器之间不同(即,如果每个类型都定义类型而不是引用一个共同的集会)。
在您的情况下,在客户端中,完全限定名称为com.test.testcases.TestPicture, Graphics Tester
,但是当它到达服务器时,服务器找不到任何名为Graphics Tester
的程序集。
您可以通过以下两种方式解决此问题: