我正在尝试向我的Restful WCF服务发帖。合同如下:
[OperationContract]
[WebInvoke(Method = "POST",
RequestFormat = WebMessageFormat.Json,
ResponseFormat=WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "UploadMovie")]
string UploadMovie(Stream stream);
或
[OperationContract]
[WebInvoke(Method = "POST",
RequestFormat = WebMessageFormat.Json,
ResponseFormat=WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "UploadMovie")]
string UploadMovie(byte [] stream);
我正在尝试使用Fiddler发出请求,但我无法通过在请求中添加一些正文来使其工作。身体需要看起来像什么?我一直在写正确的Json身体,但仍然不好......
由于
答案 0 :(得分:1)
我的问题是我没有在帖子标题中设置内容类型