The 'Access-Control-Allow-Origin' header contains multiple values '*, *', but only one is allowed
You are setting CORS twice. I think that is the issue.
Please remove any one CORS settings. You can either remove it from web.config
or from WebApiConfigFile.cs
.
Chrome and Firefox use what is called a pre-flight check using the "OPTIONS" verb.
So, you have to add "OPTIONS" to the allowed methods in the web.config. You also may have to add some code to the Application_Begin request, like this answer suggests: Handling CORS Preflight requests to ASP.NET MVC actions
Here are some resources for CORS:
IIS hijacks CORS Preflight OPTIONS request
http://www.asp.net/web-api/overview/security/enabling-cross-origin-requests-in-web-api
All other solutions provided for webAPI. This solution is for when you using webservice(.asmx) as API
Remove 'Access-Control-Allow-Origin' details from either in Global.asax.cs
file's begin_request
function or in web.config
. Because this setting must be in one place only