JS:
function ctrlr($scope, $http) {
    $http.post(urlhere).success(function(data) {
        $scope.Items = data;
    });
}
HTML:
<body ng-app="">
    <div ng-controller="ctrlr">
        <div ng-repeat="item in Items">
           {{ item.Name }}
        </div>
    </div>
</body>
Data returned from post request is a list of a class object (that contains Name property)
Checked, data is not empty. It returns an xml formatted response.
Why won't my ng-repeat work? Tried using jquery ajax, which returned json but still no go
 
     
    