Hello, Being new to Jena and Fuseki, I am trying to use Fuseki as both a SPARQL server and a means to directy access data with HTTP GET.
I have got Fuseki (version 1.3.1) running on http://localhost:3030. I want data to be accessible to the outside world on http://www.example.com (well, not really, but this is an example). In my Apache web server I have set ServerName www.example.com ProxyPass / http://localhost:3030/ ProxyPassReverse / http://localhost:3030/ I have started Fuseki like this: ./fuseki-server -v --update --mem /mydataset And I loaded small sample dataset like this: s-put -v http://www.example.com/mydataset/data http://www.example.com/mydataset/data mydataset.ttl Getting the data out via s-get works. What does not work is getting the data via HTTP: curl -g -H "Accept: text/turtle" http://www.example.com/mydataset/data This results in Fuseki reporting the following error: Error 404: No such graph: <http://localhost:3030/mydataset/data> How could this problem be resolved? Could I change something in my web server configuration or in my Fuseki settings to make this work? Regards, Frans