0

リモート Web ページから Azure 上の Web API に投稿しています。私は以下を使用します:

    $.ajax({
        type: "POST",
        url: BaseHref + "/api/PIRknownPersons/",
        data: data,
        contentType: "application/json; charset=UTF-8",
        success: function (response) {
            //alert('Saved known ');
        },
        error: function (e) {
             //alert('Unable to save Known ' );
        }
    });

間違っている可能性がありますが、ローカルで実行するとコードが正常に機能するため、Azure でリモート投稿がブロックされているようです。これは事実ですか?オフにできる Azure の設定はありますか?

PIRknownPersons -

namespace TripWeb.Controllers
{
    public class PIRknownPersonsController : ApiController
    {
        private TripDB3Entities db = new TripDB3Entities();

        // POST: api/PIRknownPersons
        [ResponseType(typeof(bool))]
        public HttpResponseMessage Post([FromBody]ApiPIRknownPerson APIPIRknownPerson)
        {
            var inst = db.Institutions.Where(x => x.RemoteID == APIPIRknownPerson.RemoteID).FirstOrDefault();
            if (inst == null)
            {
                return Request.CreateErrorResponse(HttpStatusCode.Unauthorized, "Action Not Authorized");
            }

            var newPIRknownPerson = ObjectMapper.GetEfApiPIRknownPerson(APIPIRknownPerson);

            try
            {
                db.PIRknownPersons.Add(newPIRknownPerson);
                db.SaveChanges();
                return Request.CreateResponse<bool>(HttpStatusCode.OK, true);
            }
            catch (Exception ex)
            {
                return Request.CreateErrorResponse(HttpStatusCode.BadRequest, ex.Message);
            }
        }

    }
}
4

1 に答える 1