通过RestSharp将图像上传到服务器时遇到了一些问题。
我有一个接受Stream的Rest Wcf服务。如果我使用下面的代码,我总是得到这个例外:
ProtocolViolationException要写入流的字节数超出 指定的Content-Length字节大小。
我需要配置哪些设置...设置内容长度标题似乎没有区别。
服务器端不接收图像,而是接收较小的字节流。
任何帮助表示感谢。
客户(测试)代码:
byte[] byteArray = File.ReadAllBytes("small.jpg");
request.AddHeader("Content-Length", int.MaxValue.ToString());//doesn't matter what length I put here
request.AddFile("image/jpeg", (requestStream) =>
{
using (var ms = new MemoryStream(byteArray))
{
ms.CopyTo(requestStream, byteArray.Length);//doesn't matter whether I add second param or not
ms.Flush();
ms.Close();
}
},
"sample",
"image/jpeg");
request.Method = Method.POST;
client.ExecuteAsync(request, (response, a) =>
{
Assert.IsNotNull(response.Content);
string content = response.Content;
resetEvent.Set();
});
服务代码(返回存储图像的网址)
[OperationContract]
[WebInvoke(UriTemplate = "upload/{fileName}/{fileExtension}/{id}", Method = "POST", BodyStyle = WebMessageBodyStyle.Bare, ResponseFormat = WebMessageFormat.Json)]
Message UploadPhoto(string fileName, String fileExtension, string id, Stream fileContents);
答案 0 :(得分:3)
Content-Length标头是根据请求正文的内容自动设置的,因此您无需明确设置它。