I have an ASP.NET web application running on IIS 8 in Windows Server 2012R in Classic Mode. Recently, I implemented an ApiController to return a string message when making an API call (ex. localhost/test/message). I am able to successfully run the call on my local Visual Studio, but when I deploy it to IIS 8, I get a 404 error.
My belief is because my app is running on Classic mode, which I unfortunately cannot change because of the backwards compatibility issues.
Is there a way to circumvent this issue?