We are migrating an existing application to run under ASP.NET Core MVC. We want to use the Upload feature, but the assembly we currently use, Infragistics45.Web.jQuery.v16.2, only works when the IIS App Pool using .NET CLR Version v4.0. .NET Core requires that the App Pool be set to "No Managed Code". We've tried using the new Upload Middleware we've found described on various Infragistics websites but can't seem to get any of them to work. We are running the .NET Core with the full 4.6.2 Framework due to functionality we need that is not available in the .NET Core Standard.
Can anyone provide a detailed example of both configuration, server-side and client-side code examples, to help us achieve what we need to do. We want to continue using the client-side igniteUI JQuery to perform the Uploads, but we need the server-side to run under .Net Core using the full 4.6.2 Framework.
Hello,
I left the handler file in the folder but it was excluded from the project as it should not be used. And the upload will have its own created. What happens when you exclude the handler.
I found the hander in your solution. Apparently it didn't get published, so I copied it manually. However, it still doesn't work.
I published the app rather than running in IISExpress and got the application to run, but the Upload still fails. Actually, I have no idea how you got it to work. The file IGUploadStatusHandler.ashx was nowhere in your solution. When I ran it, Fiddler indicates that the Upload was looking for the file at '/~/IGUploadStatusHandler.ashx?key=nPKATnaZSBWwmBLAoP67aX6VnavTfe&command=status&_=1497363353591' and returned the same 504 error described earlier. On the screen it still indicates that '0 of x' uploads were completed.
I haven't gotten it to work yet. Had to upgrade the solution to VS 2017. We don't use VS 2015. It is looking for the web.config file at c:\Users\mpeterson\Downloads\UploadTest\UploadTest\UploadTest. I assume that is you, but I can't find any hardcoded reference to that location.
I am attaching the modified version of your sample that is working for me. Please let me know what you see when you run it.