private void InitializeCors() { var tableServiceProperties = new ServiceProperties(); var tableClient = new CloudStorageAccount( new StorageCredentials( CloudConfigurationManager.GetSetting("storageAccountName"), CloudConfigurationManager.GetSetting("storageAccountKey")), true).CreateCloudTableClient(); tableServiceProperties.HourMetrics = null; tableServiceProperties.MinuteMetrics = null; tableServiceProperties.Logging = null; tableServiceProperties.Cors = new CorsProperties(); tableServiceProperties.Cors.CorsRules.Add(new CorsRule() { AllowedHeaders = new List<string>() { "*" }, AllowedMethods = CorsHttpMethods.Get | CorsHttpMethods.Head , //AllowedOrigins = new List<string>() { "http://ercenkbike.azurewebsites.net/" }, AllowedOrigins = new List<string>() { "*" }, ExposedHeaders = new List<string>() { "*" }, MaxAgeInSeconds = 1800 // 30 minutes }); tableClient.SetServiceProperties(tableServiceProperties); }