On 29/08/13 09:33, Andrew Reslan wrote:
I am trying to configure fuseki to use D2RQ as a read only triple store.
But despite adding the D2RQ jar to the fuseki classpath, fuseki fails to find
the D2RQ Assembler class.
I have inspected the D2RQ jar and the class exists in the correct package.
Can anyone tell me if Fuseki server uses a custom class loader?
No.
If yes, how do I add third party JAR's?
You can't use -jar -- that only reads from one jar file and ignores the
rest.
The "main" class is org.apache.jena.fuseki.FusekiCmd
java -cp "fuseki-sever.jar;OTHER..." \
... other stuff ... \
org.apache.jena.fuseki.FusekiCmd ARGS...
Andy
Andy