I want to execute the sample SPARQL query for apache marmotta from AngularJS controller via SPARQLs marmotta webservice. Sample code:
var url = "http://localhost:8080/marmotta/";
var query = "SELECT * WHERE { ?subject ?property ?object }"
$http.post(url+"sparql/select",{
'output': "json",
'query': query
} ).then(function(data){
$scope.hello = data;
}).catch(function(error){
alert(error);
});
I recieve 'query not supported' then 500 SyntaxError:
SyntaxError: Unexpected token q at Object.parse (native) at fromJson (http://localhost:63342/ws/app/script/angular.js:1075:14) at defaultHttpResponseTransform (http://localhost:63342/ws/app/script/angular.js:8650:16) at http://localhost:63342/ws/app/script/angular.js:8735:12 at forEach (http://localhost:63342/ws/app/script/angular.js:326:20) at transformData (http://localhost:63342/ws/app/script/angular.js:8734:3) at transformResponse (http://localhost:63342/ws/app/script/angular.js:9464:23) at processQueue (http://localhost:63342/ws/app/script/angular.js:13292:27) at http://localhost:63342/ws/app/script/angular.js:13308:27 at Scope.$get.Scope.$eval (http://localhost:63342/ws/app/script/angular.js:14547:28)
Or when I use code like this:
var url = "http://localhost:8080/marmotta/";
var query = "SELECT * WHERE { ?subject ?property ?object }";
$http.get(url+"sparql/select/query="+query+"&output='json'")
.then(function(data){
$scope.hello = data;
}).catch(function(error){
$scope.hello = error.stack;
});
I get a 404. Any ideas how to properly use SPARQL WS API?
In meteor plataform it works, using the package "http" and call a web service of Apache Marmotta.