$resource is powerful way to deal with Restful

However it seems $resource doesn't respect domain part of the URL  while 
$http does.

If I do this:
$http.get('https://localhost:9443/IBMJMXConnectorREST/mbeans/WebSphere:type=JvmStats/attributes/Heap').success(function(data)
 
{
                      $scope.currentValue = data;
                    }).error(function(data, status, headers, config) {
                       console.log('error' + status);
                     });

It works.

If I do this:
services.factory('JvmService', ['$resource',
    function($resource){
    return 
$resource('https://localhost:9443/IBMJMXConnectorREST/mbeans/WebSphere:type=JvmStats/attributes/Heap',
 
{}, {
        query: {method:'GET'}
    });
    }]);

The server responds with error: "please specific domain part of the URL". 

Anyone know how $resource deals with the domain part of the full URL?

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to