Sorry for the basic question, I'm new to SPARQL servers.
I'm having trouble connecting to my fuseki server as a public endpoint
-- I'm sure I'm not using the correct endpoint/default graph URLs.
My tdb2.ttl:
@prefix tdb: <http://jena.hpl.hp.com/2008/tdb#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
@prefix tdb: <http://jena.hpl.hp.com/2008/tdb#> .
[] ja:loadClass "com.hp.hpl.jena.tdb.TDB" .
[] ja:loadClass "org.openjena.fuseki.BackwardForwardDescribeFactory" .
tdb:DatasetTDB rdfs:subClassOf ja:RDFDataset .
tdb:GraphTDB rdfs:subClassOf ja:Model .
<#dataset> rdf:type tdb:DatasetTDB ;
tdb:location "DB" ;
tdb:unionDefaultGraph true ;
.
Fuseki starts: ./fuseki-server --desc tdb2.ttl /dataset
Get gets: ./s-get --verbose http://mydomain.com:3030/dataset/data default
Given these defaults, how can I use a query to connect to my fuseki
server as a (remote) public endpoint?
TIA -judy