I am new to ontology development and I just finished my first ontology. Now I need to use this ontology within Apache Stanbol to perform re-factoring of some RDF graphs.
This is how you write a typical rule in Stanbol:
myRule[ has(<http//myont.org/hasFather>, ?x, ?y) . has(<http/myont.org/hasBrother>, ?y, ?z) -> has(<http//myont.org/hasUncle>, ?x, ?z) ]
I am guessing I will have to host my ontology some where online for the rules to work. Right now the base URI points to http://www.example.org/ontologies/EDXL.owl#, which is a fictional address.
I understand that the URI need not point to physical address, but would it then work with Stanbol? If this is the case, how do I host the .owl file. Would any web server do (i.e. public WWW) ?