我正在尝试通过WCF-REST服务上传MS-Excel文件。 我使用下面给出的解决方案: - RESTful WCF service image upload problem 我的POST方法声明为:
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "/RFQ")]
[WebContentType("application/octet-stream")]
void UploadRFQDoc(Stream fileContents);
当我调试时,流内容很好,直到调用进行,当我将服务附加到调试时,Stream fileContents参数变为null,并且服务返回[Bad Request]。我不发送大文件(它只是50 KB)。我正在使用HttpClient来调用Post。 这是客户端代码(RestClient是HttpClient)。
protected void Post(string uri, Stream stream, int length)
{
var content = HttpContent.Create(output => CopyToStream(stream, output, length), "application/octet-stream", length);
Uri relativeUri = new Uri(uri, UriKind.Relative);
var resp = RestClient.Post(relativeUri, content);
ProcessResponse(resp);
}
void CopyToStream(Stream input, Stream output, int length)
{
var buffer = new byte[length];
var read = input.Read(buffer, 0, Convert.ToInt32 (length));
output.Write(buffer, 0, read);
}
任何其他可能出错的线索。 非常感谢。
答案 0 :(得分:1)
[WebContentType(“application / octet-stream”)]属性在这里是不必要的。我评论了它,并且一切正常:)。