I tried to create an ontology with jena and I chose the following namespace:
String ns=”http://www.ontologie.fr/monOntologie”; OntModel m = ModelFactory.*createOntologyModel*(); OntClass autt = m.createClass(ns+"Auteur"); OntClass thaut = m.createClass(ns+"Theme"); OntClass motc = m.createClass(ns+ "Mot-Clé"); …………. but my supervisor gives me this note: Your ontology is not really published anywhere. The namespace looks made up. Please, how I can resolve this problem???
