I try to send header value from Jquery Ajax like this
$.ajaxSetup({
url:http://my url
headers: { "CustomHeader": "myValue" }
});
but i can't consume this header value in wcf service using C#..If there is any way to send custom header using ajax and retrieve same header in wcf service
Thanks in advance