Impossible to retrieve text json ionic

I would like to retrieve texts from the home page for my app “http://www.ecklipse.com

sorry for my bad English :confused:

var app = angular.module(‘httpApp’, []);
app.controller(‘httpController’, function ($scope, $http) {
$http.get(“http://www.ecklipse.com/rss.xml”,
{
transformResponse: function (cnv) {
var x2js = new X2JS();
var aftCnv = x2js.xml_str2json(cnv);
return aftCnv;
}
})
.success(function (response) {
console.log(response);
});
});

not work for me in ionic 1