Hello there, I need some advice..
well, I loaded a quad dump from a triple store, into TDB (as the dump consists of multiple files, I wrote a bash loaderscript for that). So far, so good. I can queue the data via commandline, using tdbquery. ..Still, I'm having problems hooking it up to the joseki SPARQL endpoint. I followed the instructions here http://incubator.apache.org/jena/documentation/tdb/assembler.html also looked here http://tw.rpi.edu/portal/Configuring_Joseki_%2B_Pellet_%2B_TDB#2._Install.2Fconfigure_TDB Well, joseki returns no result when I use the joseki sparql interface, although via tdbquery, I do get the desired result sets. Just how do I configure joseki right to handle the quads? I'll feel happy for any hint in the right direction sincerly Peter ...here is an extract from my joseki-config.ttl ------schnipp------ [] ja:loadClass "com.hp.hpl.jena.tdb.TDB" . ## Initialize TDB. tdb:DatasetTDB rdfs:subClassOf ja:RDFDataset . tdb:GraphTDB rdfs:subClassOf ja:Model . <#cns-dataset> a ja:RDFDataset; ja:defaultGraph [ a ja:InfModel; a:baseModel [ a tdb:GraphTDB; tdb:location "/home/pjungen/store/cns-dataset" ; ]; ]; . ------schnapp------
