对RESTful WCF服务的POST请求出现问题

时间:2009-07-17 15:53:33

标签: c# wcf post

我正在尝试向我的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身体,但仍然不好......

由于

1 个答案:

答案 0 :(得分:1)

我的问题是我没有在帖子标题中设置内容类型