User-558484894 posted
Thanks Kevin,
But there is one question which you can defintely help is CORS implementation. My services are residing on a server. These services will be called from my web application as well as mobile application. To support such arrangement my services should implement
support for CORS. As mentioned in many blogs and articles I have implemented following code in my web api 2 service configuration to allow CORS globally.
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
// Other configuration omitted
config.EnableCors(new EnableCorsAttribute("*", "*", "*"));
}
}
The issue is still the client get error saying "CORS not enabled"?
Any help.
I need to implement