Здравствуйте, никогда еще не работал с xml api и не могу понять в чем проблема,
Есть такая фабрика.
app.factory('sellerdata', ['$http',
function ($http) {
return $http({
method: 'POST',
url: 'http://shop.digiseller.ru/xml/test_shop_products.asp',
headers: { "Content-Type": 'application/x-www-form-urlencoded' },
params: { id_seller: '505197'}
})
.success(function (data) {
return data;
})
.error(function (err) {
return err;
});
}]);
Получаю следующую ошибку
"XMLHttpRequest cannot load
shop.digiseller.ru/xml/test_shop_products.asp?id_s.... No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin '
localhost' is therefore not allowed access."
На сервере
У основных методов прописан заголовок "Access-Control-Allow-Origin", "*"
Пробовал через эмулятор запросов, все сработало, значит проблема в моем коде.