Click here to Skip to main content
15,884,598 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Actaully I was working in angular JS. Initially it is not allowed even the get method also . thats way i added some config settings like below. this is only working for GET, POST Method not working . Please help me.


I added follow code in Web.Config within the <system.server> element.


XML
<httpProtocol>
      <customHeaders>
        <!-- Begin this is for angularJS configuration  -->
      <add name="Access-Control-Allow-Origin" value="*"/>
      <add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE, OPTIONS" />
        <!-- End this is for angularJS configuration  -->
      </customHeaders>
    </httpProtocol>


What I have tried:

I didn't tried for the post method.
Posted
Updated 28-Mar-16 3:00am
v2

1 solution

You can use following in your Global.asax.cs file:

C#
protected void Application_BeginRequest(object sender, EventArgs e)
        {           
            if (HttpContext.Current.Request.HttpMethod == "OPTIONS")
            {
                //These headers are handling the "pre-flight" OPTIONS call sent by the browser
                HttpContext.Current.Response.AddHeader("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE");
                HttpContext.Current.Response.AddHeader("Access-Control-Allow-Headers", "Content-Type, Accept");
                HttpContext.Current.Response.AddHeader("Access-Control-Max-Age", "1728000");
                HttpContext.Current.Response.End();
            }
        }
 
Share this answer
 
Comments
Member 12371381 29-Mar-16 8:25am    
i tried this but sttill i have a same issue.

i was getting foloowing isssue:

Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://localhost:42165/Service1.svc/GetData. (Reason: CORS preflight channel did not succeed).

i tried code like this.

var formEmployeeModule = angular.module("formEmpMod", []).controller("testcont",function($scope,$http) {
$scope.testMessage = "test message";

var compositeType = new Object();
compositeType.BoolValue = false;
compositeType.StringValue = "This is nanaji";


$scope.GetDataFromDb = $http({
ContentType: "application/json;charset=utf-8",
method: "POST",
processData: true,
crossDomain: true,
cache: false,
async: true,
dataType : 'jsonp',
url: "http://localhost:42165/Service1.svc/GetData",
// params: { value: '123'}
data:{composite:compositeType}
//http://localhost:42165/Service1.svc/GetData?value=123

}).then(function sucessCallBack(response) {

alert(response.data);
alert('this is sucess call black');
}, function errorCallback(response) {
alert(response.data);
alert('this is Failure call black');
} );


});


Rest service Server Web.Config:

<httpprotocol>
<customheaders>
<!-- Begin this is for angularJS configuration -->
<add name="Access-Control-Allow-Origin" value="*">
<add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE, OPTIONS">
<add name="Access-Control-Max-Age" value="1728000">
<add name="Access-Control-Allow-Headers" value="Origin, X-Requested-With, Content-Type, Access-Control-Allow-Origin">

<!-- End this is for angularJS configuration -->




In client Application Global.Asax file


protected void Application_BeginRequest(object sender, EventArgs e)
{

HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");
if (HttpContext.Current.Request.HttpMethod == "OPTIONS")
{
//These headers are handling the "pre-flight" OPTIONS call sent by the browser
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE");
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Access-Control-Allow-Origin");
HttpContext.Current.Response.AddHeader("Access-Control-Max-Age", "1728000");
HttpContext.Current.Response.End();
}
}

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900