Reputation: 4492
I have the following code on my Windows 10 UWP app to send a file to a WebAPI web service.
public async void Upload_FileAsync(string WebServiceURL, string FilePathToUpload)
{
//prepare HttpStreamContent
IStorageFile storageFile = await StorageFile.GetFileFromPathAsync(FilePathToUpload);
IRandomAccessStream stream=await storageFile.OpenAsync(FileAccessMode.Read);
Windows.Web.Http.HttpStreamContent streamContent = new Windows.Web.Http.HttpStreamContent(stream);
//send request
var myFilter = new Windows.Web.Http.Filters.HttpBaseProtocolFilter();
myFilter.AllowUI = false;
var client = new Windows.Web.Http.HttpClient(myFilter);
Windows.Web.Http.HttpResponseMessage result = await client.PostAsync(new Uri(WebServiceURL), streamContent);
string stringReadResult = await result.Content.ReadAsStringAsync();
}
Here is the controller that I am trying to use in the web service but myFileBytes
always has a null value. I tried adding [FromBody]
and [FromForm]
with the same result.
public class MyController : Controller
{
[HttpPost]
public async Task<bool> Upload_File(byte[] myFileBytes)
{
//...
}
}
I also tried using IFormFile
with the same result.
public class MyController : Controller
{
[HttpPost]
public async Task<bool> Upload_File(IFormFile myFileBytes)
{
//...
}
}
How can I get the file to the controller in the web service? Please help!
Upvotes: 0
Views: 479
Reputation: 1889
As promised! what i used:
in the asp.net core i have a controller that looks like:
[Route("api/[controller]")]
public class ValuesController : Controller
{
[HttpPost("Bytes")]
public void Bytes([FromBody]byte[] value)
{
}
[HttpPost("Form")]
public Task<IActionResult> Form([FromForm]List<IFormFile> files)
{
// see https://learn.microsoft.com/en-us/aspnet/core/mvc/models/file-uploads
return Task.FromResult<IActionResult>(Ok());
}
}
in UWP use this to send the image:
var file = await StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///Assets/LockScreenLogo.png"));
try
{
var http = new HttpClient();
var formContent = new HttpMultipartFormDataContent();
var fileContent = new HttpStreamContent(await file.OpenReadAsync());
fileContent.Headers.ContentType = new Windows.Web.Http.Headers.HttpMediaTypeHeaderValue("image/png");
formContent.Add(fileContent, "files", "lockscreenlogo.png");
var response = await http.PostAsync(new Uri("http://localhost:15924/api/values/Form"), formContent);
response.EnsureSuccessStatusCode();
}
catch(Exception ex)
{
}
the formContent.Add(fileContent, "files", "lockscreenlogo.png");
is important. Use this specific override
Upvotes: 2