Hello,
I was having a problem sending video data to a WCF restful service using post, my contract looks like this
[OperationContract]
[WebInvoke(Method = "POST",
ResponseFormat=WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "UploadMovie")]
string UploadMovie(Stream stream);
This works ok when im sending some text data but does not work when i attempt to send Video data, I have some exception catching in place but it seems like the request is not even being processed, since i get no response and no exceptions get logged... anyone have any input on this?
Thanks