Hi Miclejee,
The mentioned issue might have occurred due to the IIS does not map extension for WebAPI action URLs. So please enable the IIS request modules mapped for all requests in Web.config file as shown in below code example.
|
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer> |
Also, please ensure the below WebApi dependent assemblies “Copy Local” property is set as true in IIS hosted environment.
- System.Web.Routing
- System.Web.Http
- System.Web.WebHost
- System.Net.Http
- System.Net.Http.WebRequest
- System.Net.Http.Formatting
And also ensure the Syncfusion dependent assemblies “Copy Local” property is set as true.
Regards,
Yuvaraj D.