Я пытаюсь сделать запрос PUT на JQUERY к сервису RESTFULL, когда пытаюсь сделать запрос на URL с localhost (http://localhost/Domain) запрос работает. Но когда меняем URL на какой-то ip (http://192.123.32.3), операция на сервер не работает.
$.ajax({
type: "PUT",
url: urlOperation,
dataType: "json",
contentType: "application/json",
data: $.toJSON(submitVote), success: function (result)
{
alert('Great ...');
}
});
Ошибка в Chrome: «Метод PUT не разрешен Access-Control-Allow-Methods»
Я пытаюсь решить эту проблему, добавив разрешение put для события Application_beginRequest примерно так:
private void EnableCrossDmainAjaxCall()
{
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");
if (HttpContext.Current.Request.HttpMethod == "OPTIONS")
{
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Methods", "GET, POST, PUT");
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Headers", "Content-Type, Accept");
HttpContext.Current.Response.AddHeader("Access-Control-Max-Age", "1728000");
HttpContext.Current.Response.End();
}
}
После прочтения документации jquery.Ajax я попытался добавить свойство crossDomain = 'true' без успеха.
Спасибо и всего наилучшего