I have a new .Net webapi app that works fine on my development box but I can't get it running on our IIS8 server. The webapi can return data in XML format through a browser or through the application, but when I switch to MediaTypeWithQualityHeaderValue("application/json") then I just get the 500 Internal server error response from IIS.
So far in IIS 8 I have: Added a .json Mime Type (application/json) Installed classic ASP (seemded to need this for the next step) Added a .json Handler Mapping (.json / C:\WINDOWS\system32\inetsrv\asp.dll / JSON)
If anyone can give me any clues as to what I've missed that would be great.
Thanks