You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jena.apache.org by miaad raisan <mr...@yahoo.com.INVALID> on 2014/06/04 14:10:24 UTC

create public SPARQL endpoint to my dataset

hello all,
  
 after I published my ontology , I want to create public SPARQL endpoint to my dataset like "http://dbpedia.org/sparql" , I download fuseki and try it "localhost:3030", and everything is ok.
when I read some resources I found I must store my dataset in jean TDB at fisrt, and then use fuseki . my qusetion is :- **how to create public SPARQL endpoint to my dataset ???
** 
do I need something like Apache to redirect from "http://localhost:3030/dataset/sparql " to "http:// *mysite*/sparql".

many thanks

Re: create public SPARQL endpoint to my dataset

Posted by Andy Seaborne <an...@apache.org>.
On 04/06/14 13:10, miaad raisan wrote:
> hello all,
>
>   after I published my ontology , I want to create public SPARQL endpoint to my dataset like "http://dbpedia.org/sparql" , I download fuseki and try it "localhost:3030", and everything is ok.
> when I read some resources I found I must store my dataset in jean TDB at fisrt, and then use fuseki . my qusetion is :- **how to create public SPARQL endpoint to my dataset ???
> **
> do I need something like Apache to redirect from "http://localhost:3030/dataset/sparql " to "http:// *mysite*/sparql".
>
> many thanks
>

You asked:
http://answers.semanticweb.com/questions/28598/create-public-sparql-endpoint

httpd will redirect from the public side to the backend server

e.g. in the mysite httpd.conf (or vhost):

ProxyPass /sparql http://localhost:3030/dataset/sparql max=3

See the httpd manual for details

	Andy

(This is a users@ question - please use that list)