Я пытаюсь отправить изображение и его метаданные (например, имя) через Newtonsoft.Json.Bson
на сервер WebApi Restful из консольного клиента C #.
Код клиента:
public async Task SendRequestAsync(byte[] imageBytes, string fileName)
{
using (var stream = new MemoryStream())
using (var bson = new Newtonsoft.Json.Bson.BsonWriter(stream))
{
var jsonSerializer = new JsonSerializer();
var json = JObject.FromObject(new
{
name = fileName,
content = imageBytes
});
jsonSerializer.Serialize(bson, json);
var client = new HttpClient
{
BaseAddress = new Uri("http://localhost:1920")
};
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/bson"));
var byteArrayContent = new ByteArrayContent(stream.ToArray());
byteArrayContent.Headers.ContentType = new MediaTypeHeaderValue("application/bson");
var result = await client.PostAsync(
"api/Files", byteArrayContent);
try
{
HttpResponseMessage response = result.EnsureSuccessStatusCode();
Console.Out.WriteLine(response.IsSuccessStatusCode);
Console.Out.WriteLine(response.Headers);
Console.Out.WriteLine(response.Content);
Console.Out.WriteLine(response.StatusCode);
}
catch (Exception e)
{
Console.Out.WriteLine(e);
}
}
}
Код сервера
// WebApi Controller
public JsonResult<object> Post([FromBody]FileModel fileModel)
{
Console.Out.WriteLine(fileModel.name);
Console.Out.WriteLine(fileModel.length);
return Json<object>(new
{
status = HttpStatusCode.OK,
length = fileModel.length,
name = fileModel.name
});
}
// Model Class
public class FileModel
{
public string name { get; set; }
public byte[] content { get; set; }
public int length { get; set; }
}
Если я отправлю изображение размером 28 КБ, то серверполучить изображение успешно.Но если я пытаюсь отправить изображение размером 20 МБ, я получаю следующую ошибку
System.Net.Http.HttpRequestException: Response status code does not indicate success: 404 (Not Found).
at System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()
at FileUploadConsole.Program.<SendRequestAsync>d__1.MoveNext() in c:\users\Projects\FileUploadConsole\FileUploadConsole\Program.cs:line 58
Строка 58: HttpResponseMessage response = result.EnsureSuccessStatusCode();
Почему для большого изображения не удается найти службу?