On 19/08/14 17:05, Luigi Selmi wrote:
Hi Andy,
thank you for your quick response. I made the change for the misspelled
property but when I run Fuseki using the updated assembler file
http://www.sharesemantics.com/test/jena/jena-spatial-assembler.ttl
I get the following error:
com.hp.hpl.jena.sparql.ARQException: Found two matches: var ?root ->
http://localhost/jena_example/#spatial_dataset,
file:///home/luigi/jena/apache-jena-2.11.1/jena-spatial-assembler.ttl#fusepoolp3
It's strange because there's only one (spatial) fuseki:dataset configured in
the assembler file even if it is made of a RDF dataset and a Lucene index
Luigi
You used --desc to the Fuseki command line which is a short cut to work
with a assembler with a single dataset in it.
It is not the full assembler configuration setup.
Use "--conf jena-spatial-assembler.ttl"
I have tried this:
(D.ttl is your data, assem.ttl your assembler)
java -cp ~/jlib/jena-fuseki-1.0.1/fuseki-server.jar tdb.tdbloader --desc
assem.ttl D.ttl
java -cp ~/jlib/jena-fuseki-1.0.1/fuseki-server.jar jena.spatialindexer
--desc=assem.ttl
java -jar ~/jlib/jena-fuseki-1.0.1/fuseki-server.jar --conf assem.ttl
and it worked on v1.0.1 (which corresponds to Jena 2.11.1) and current.
Andy