重複の可能性: NetworkError: 405 Method Not Allowed in WCF
jQuery AJAX POST で REST サービスを呼び出しました。IE8では問題なく動作します。しかし、 Firefox では" NetworkError: 405 Method Not Allowed " が表示されます。多くのウェブサイトを検索しましたが、明確な答えが得られませんでした。
私のインターフェースコード:
[ServiceContract]
public interface IEShop
{
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "/InsertDetails", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
string InsertDetails(EShopInputParameters EcomInput);
}
Jクエリ
var postCall = function () {
var input =
{
Userid: "123456",
partnerid: "cswp"
};
alert(JSON.stringify(input));
$.ajax({
type: "POST",
url: "http://localhost:36196/Service.svc/InsertDetails",
data: JSON.stringify(input),
contentType: "application/json",
dataType: "json",
success: function (response) {
alert(response);
},
error: function (xhr, status, error) {
alert(error);
}
});
}
サービス
public string InsertDetails(EShopInputParameters EShopInput)
{
try
{
command = database.GetStoredProcCommand(Data_Template.UspGetInsertDetails);
database.AddInParameter(command, Data_Template.UserID, DbType.String, EShopInput.Userid);
database.AddInParameter(command, Data_Template.PartnerID, DbType.String, EShopInput.partnerid);
database.ExecuteNonQuery(command);
return "0";
}
catch (Exception err)
{
throw err;
}
}
前もって感謝します..
**EDIT** <br/>
ブログhttp://blog.weareon.net/calling-wcf-rest-service-from-jquery-causes-405-method-not-allowed/から以下のコードを追加しました。ただし、「if」条件をバイパスします。
protected void Application_BeginRequest(object sender, EventArgs e)
{
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");
if (HttpContext.Current.Request.HttpMethod == "OPTIONS")
{
HttpContext.Current.Response.AddHeader("Cache-Control", "no-cache");
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Methods", "GET, POST");
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Headers", "Content-Type, Accept, x-requested-with");
HttpContext.Current.Response.AddHeader("Access-Control-Max-Age", "1728000");
HttpContext.Current.Response.End();
}
}