Hi All,
I'm attempting to create a WebAPI2 Controller method that allows clients to upload files to the server. Based on multiple tutorials, I have successfully written the method using MultipartFormDataStreamProvider.
The issue I am having is that this fails with a HTTP 400.0 error message "ASP.NET detected invalid characters in the URL." if the file's size exceeds 2GB.
How can I allow the upload of files up to 3/4 GB?
Thanks!