Use a SPIN function defined in TopBraid in my Java project

107 views Asked by At

I'm writing my first Java project for Semantic Web using Jena framework. My ontology was peopled and now I'd like to use some SPIN function (they weren't written by me) in my project. They are very simple: they receive 2 string arguments and return 1 string. I never do this kind of project so I don't know from where I can begin. Can you help me?

1

There are 1 answers

0
scotthenninger On

The question lacks far too many details, but a wild guess may be that you want to use this in the form:

SELECT *
WHERE {
   ...
   BIND(spin-function(?param1, ?param2) AS ?result)
   ...
}

That assumes that the Jena framework you are using has SPIN installed.