using SPARQL Anything as a java library #288
Unanswered
justin2004
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hi,
It should be this
The error doesn't seem related to the static initialiser (static block), otherwise, you should get something related to the fact that the engine is not able to find a triplifier for the source.
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a Clojure/Java project where I use Apache Jena to run SPARQL constructs.
I'd like to be able to use service clauses with the
x-sparql-anything:
scheme.If I don't put the SPARQL Anything jar on the class path and I use Jena to execute this:
I get this error (as expected):
Next, if I put the SPARQL Anything jar on the class path and evaluate this:
which is equivalent to:
Then I execute that construct again I get:
I'd like to know how to tell Apache Jena to use FacadeXOpExecutor when that protocol is encountered. Any tips on how I might do that?
My current guess as to why this isn't working... I think it is related to this... the static initializer in the FacadeX class (which registers functions and magic properties, etc.) might not be getting executed?
Beta Was this translation helpful? Give feedback.
All reactions