i have tried in vain run owin webapi app in iis on windows 10. api operations result in 404, though works fine in visual studio. see owin webapi project on iis 10 gives 404 on operations. worst part newly created project owin webapi spa template same. when @ application pool choices in iis manager, highest .net version 4.5. makes me wonder whether .net 4.6 supported @ all. advice appreciated.
try workaround http://www.jammer.biz/enable-asp-net-on-windows-10/ worked me
or
try edit web config to
<compilation debug="true" targetframework="4.6" /> <httpruntime targetframework="4.5" />
this make httpruntime verison 4.5 on iis
Comments
Post a Comment