lunes, 19 de octubre de 2015

Restful + json client (not allowed)

Al ejecutar un llamado desde Jquery a un servicio WCF Rest se genera el error  [HTTP/1.1 405 Method Not Allowed XXXms].

Para evitar esto, en el proyecto del servicio web se debe agregar al archivo Global.asax.cs lo siguiente:

 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();
    }
}


No hay comentarios. :

Publicar un comentario