我有以下 WCF REST Web 服务接口:
[ServiceContract]
public interface IService
{
[OperationContract]
[WebInvoke(
UriTemplate = "foobar/",
Method = "POST",
ResponseFormat = WebMessageFormat.Json,
RequestFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Bare),
]
void PostFoobar(Foobar foobar);
}
实施:
public class Service : IService
{
public void PostFoobar(Foobar foobar)
{
try
{
Log.MonitoringLogger.Info("foo" + foobar.foo);
Log.MonitoringLogger.Info("bar" + foobar.bar);
}
catch (Exception ex)
{
if (Log.ExceptionLogger.IsErrorEnabled) Log.ExceptionLogger.Error(ex);
}
}
}
我的 Foobar 类:
[DataContract]
public class Foobar
{
[DataMember]
public string foo { get; set; }
[DataMember]
public string bar { get; set; }
}
但是,当我从客户端调用时,参数中的 Foobar 对象似乎始终为 NULL。我试图实现以下方法:
void PostFoobar(String foo, String bar);
这次它起作用了!所以我的问题是:为什么,当我发送一个 JSON Foobar 对象时,它没有反序列化它?
这是使用 Wireshark 进行的捕获,以查看我的客户端是否真的发送了我期望的 JSON 对象:
所以看起来客户端按预期发送对象:{“foo”:“foo text”,“bar”:“bar text”}