Hello I'm new to AngularJs and trying to get json Data from my server. When the service gets executed, I see a clear response in Fiddler. But the success or the error function does not get executed, and so the service returns an empty array.
var app = angular.module('imageApp', []);
app.service('imageService', function ($http) {
    var imageModels = [];
    this.Images = function (url) {
        $http({ method: 'GET', url: url }).success(function (data) {
            imageModels = data;
        }).error(function (data) {
            imageModels = data || "Request failed";
        });
        return imageModels;
        };
    };
});
app.controller('ImageController', function (imageService, $scope) {
    $scope.fetch = function (url) {
        $scope.url = url;
        $scope.ImageModels = imageService.Images($scope.url);
    };
});

