vote up 1 vote down star

I am trying to make a post request to my restful WCF service. The contract looks like this:

    [OperationContract]
    [WebInvoke(Method = "POST",
                 RequestFormat = WebMessageFormat.Json,
                 ResponseFormat=WebMessageFormat.Json,
               BodyStyle = WebMessageBodyStyle.Wrapped,
               UriTemplate = "UploadMovie")]
    string UploadMovie(Stream stream);

or

    [OperationContract]
    [WebInvoke(Method = "POST",
                 RequestFormat = WebMessageFormat.Json,
                 ResponseFormat=WebMessageFormat.Json,
               BodyStyle = WebMessageBodyStyle.Wrapped,
               UriTemplate = "UploadMovie")]
    string UploadMovie(byte [] stream);

I am trying to use Fiddler to make a request, yet I am not able to get it to work by putting some body in the request. What does the body need to look like? I have been writing the correct Json in the body but still no good...

Thanks

flag

Are you getting an error message? – Robert Harvey Jul 17 at 16:10
Not that i can see – Daniel Jul 17 at 17:02
I am doing someting like {"stream" : data} as the body – Daniel Jul 17 at 17:02

1 Answer

vote up 1 vote down check

My problem was that i w as not setting the content-type in the post header

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.