Tagged Questions
0
votes
1answer
29 views
how to rename an ontology's prefixes
I have created an onology using Jena API which contains the following classes and DataType Properties:
public class Onto {
OntClass USER,...;
OntModel model;
String uriBase;
...
1
vote
1answer
44 views
Jena someValuesFrom error - {E201} rdf:resource not allowed as attribute here
I'm fairly new to learning the semantic web, so to facilitate learning, I chose to write an ontology about something I'm fairly familiar with, video games.
So I think I'm starting to understand this ...
0
votes
2answers
27 views
How to execute Java-based OWL reasoner on an Apache (not Tomcat) server?
I have a PHP web application that should perform reasoning on an OWL (Ontology Web Language) document. I know of two reasoners, both of which are written in Java, but I have a standard Apache server ...
0
votes
2answers
25 views
Convert OWL axiom to Manchester syntax
Is there a way to Convert an OWL axiom to Manchester Syntax? I know that the OWL-API will allow you to parse a sentence in Manchester Syntax into OWL functional syntax, but I need to do exactly the ...
0
votes
1answer
52 views
How to generate list of named classes and object property names in a given ontology using java & jena
Here is the owl ontology that represents information on artists, musicians and musical hits
<rdf:RDF xml:base="http://www.semanticweb.org/ontologies/2013/3/MyArt"><owl:Ontology ...
0
votes
1answer
65 views
Jena multiple rdfs:label
I'm new to Jena and Owl I was given an ontology. I can open it with Protege 4.2 without any problems but when I try to open it with Jena I get:
Exception in thread "main" ...
0
votes
1answer
51 views
OWL Class Expression for Data Property
In my ontology, I have an individual that has this data property
hasName "somaName"^^string,
however, when i'm building a class expression and sending to the reasoner for get the instances, I'm ...
0
votes
1answer
56 views
Writing OWLObjectPropertyExpression on OWL Ontology using OWL API
I'm trying to write an OWLObjectPropertyExpression on OWL Ontology object. If I had an OWL Class I use something like the following:
OWLOntologyManager managerWriter = ...
0
votes
2answers
114 views
Return System.out to String
I have query Sparql on OWL 'ressu.owl' file which created with protege 3.x.. am obliged to point to transform the resultset into something usable like JTextArea for this i work with ...
0
votes
1answer
79 views
How to transform Modellica code to Ontologies (.owl)?
I working on a mechatronic project and i use dymola tool to generate modelica code for my model . now i want to transform modellica to .owl inorder to implement semantic search for the elements . I ...
1
vote
1answer
149 views
How to get individual information from owl by passing its name to a java program
I have an owl file and I need to write a java program in which I pass the individual name (such as Lion) and get all object/data properties values related to this individual from owl (such as: Golden ...
0
votes
0answers
114 views
Imported OWL files not being used
I have created an OWL file in TURTLE notation from Protege, which uses two imports:
owl:imports <http://localhost/imported1.owl> ,
<http://localhost/imported2.owl> .
I have loaded this ...
0
votes
1answer
62 views
Handling data value restrictions in dl query
I am trying to run a DL Query using the OWL API, using the DL Query ...
-1
votes
1answer
59 views
Reasoner not returning instances
When I'm doing this, its not working
OWLClassExpression query = factory.getOWLObjectIntersectionOf(factory.getOWLClass("#belgique", pm))
reasoner.getInstances(query,true);
this one is working:
...
0
votes
3answers
133 views
Extracting data from OWL file
<!-- http://www.semanticweb.org/vaio/ontologies/2013/0/untitled-ontology-113#hasDegree -->
<owl:ObjectProperty ...
0
votes
0answers
75 views
How to use Protege OWL to get domains for property
I would like to know how to get the domain list for a given Property and a given Range in with Java using Protege-OWL.
For example, I have the property hasColor and the range is Red with multiple ...
1
vote
1answer
334 views
Java - Using Jena APi - Get data from RDF file
My question concerns the class Person with the datatype properties hasFirstName, hasLastName, hasDateOfBirth, hasGender.
I'm using Java and Jena API.
Here is how one person is represented in my RDF ...
0
votes
1answer
125 views
Linking concepts using OWL.sameAs in Jena
I am trying to tie up two identical individuals from different sources. My idea is that, if IndividualA has a missing property P but is tied up to IndividualB with an existing P using OWL.sameAs, then ...
0
votes
1answer
144 views
DL Query and OWL
I have created an ontology in protege.
I have a class called AlcoholicBeverage, under this class there are subclasses Beer, Wine. These subclasses are disjoint.
I have a class called Person (no ...
2
votes
1answer
79 views
Confused about Ontology being “data-driven” s.t. updating an ontology
I have read here* that ontologies (RDF's in nature) are data-driven because one can work with a small ontology and use it for an application, and later... integrate additional concepts to the same ...
0
votes
1answer
215 views
Convert Owl class to java class or xml
I am wondering if there are any tools that can convert an owl ontology xml schema or an xml document. Or is there any way to generate a java class for a given owl class.
Lets say I have owl class ...
0
votes
2answers
147 views
Obtain only names after “#” from SPARQL query
I have this java code that, using apache jena api, queries the pizza ontology
String queryStr =
"prefix pizza: <" + PIZZA_NS + "> " +
"prefix rdfs: <" + RDFS.getURI() + ...
0
votes
0answers
145 views
NoSuchMethodError?
I want to load my OWL ontology into java code. When I run my code it will give following error.
Exception in thread "main" java.lang.NoSuchMethodError: ...
2
votes
0answers
95 views
how to read rdf:description inside annotation:owl api
I am new to owlapi.
how to get the value inside the rdfs:label in the following owl file
oboInOwl:hasSynonym is an annotation property.
<oboInOwl:hasSynonym>
...
2
votes
1answer
175 views
OWLIM-lite does not infer any statements
I am using OWLIM-lite (5.2) for owl2rl ontology reasoning. Storing of axioms seems to work, repository initialized, but the system does not infer any implicit statements (when I query number of ...
0
votes
1answer
186 views
Jena, RDF and Jade implementation
I have an OWL ontology and I want to store data as RDF . When I search in the Google I saw Jena library is used for this purpose. But I could not understand how can I represent data as RDF in Jade.. ...
1
vote
1answer
118 views
How to get all restrictions on an individual in Jena
my ontology has a Road class, and a shop class.
The Road class has an individual called 'highstreetroad' which is related to 8 different shop individuals.
I'm trying to print all the existing ...
2
votes
1answer
185 views
OWL functional syntax parsing in Java
I need to parse an OWL functional syntax in my Java programme but I don't want to convert it into XML/RDF. Is there any open source parser or another api(other than OWL) that I can use to parse it?
...
-1
votes
1answer
171 views
Display Ontology Content in Java [closed]
I got an ontology/.owl-file. I want to display the content in my JAVA-Application.
The content which is to read should be just the classes and instances.
I really hard tried different things in the ...
0
votes
2answers
400 views
How to count individuals of an owl class in Jena?
I'm working on automatic instanciation of an OWL model with Jena. Since every individual need an unique identifier.
How could I know the number of individual of a given OWL class in order to ...
1
vote
1answer
79 views
OWL API build failed with ANT
I download OWL API 3.2.4 from http://owlapi.sourceforge.net/download.html
and build it with ANT.
There are some errors show on the terminal:
$ ant
Buildfile: /home/yichu/owlapi-3.2.4/build.xml
...
0
votes
1answer
139 views
Semantic web services [closed]
What is the best ,state of art approach for implementing semantic web services ?
I am looking for a complete architecture description.
1
vote
1answer
166 views
Reading restriction constraints using Jena
I have some object restrictions like
hasVendor some Vendor
hasYear some integer[minLength 2, maxLength 4, >=1995, <=2012]
hasPrice only string[pattern "/^[0-9]+(\.[0-9]{2})?$/"]
where Vendor ...
1
vote
0answers
534 views
How do I implement this class expression in Java OWLAPI?
This is an example of a class expression for use in a
demo application:
Lecturer
and (hasResearch some (relatedTo some Semantic_Web))
and (teaches at-least 3 Course)
and (hasTitle value ...
1
vote
0answers
143 views
How to customize ontology merge in OWL API?
Can anyone tell me how to customize ontology merge code in OWL API according to our requirements?
Is there any method to customize this merging of two/more OWL files?
4
votes
1answer
303 views
Read restriction values using Jena
I have an object restriction defined as follows
hasYear some integer[minLength 2, maxLength 4, >=1995, <=2012]
How can i read the individual values defined in the restriction using Jena.
0
votes
1answer
55 views
What is Ontology Exporter?
What is ontology exporter?I saw this on ResearchCyc site.
It mentioned that "An Ontology Exporter that makes it simple to export specified portions of the knowledge base to OWL files".Where can I find ...
1
vote
1answer
129 views
How to get OWL file from opencyc?
I want to get some domain of knowledge in opencyc KB in OWL form.. Assume we want to take fruit. Then how can I take this knowledge as OWL form? Because I want to load that file into protege as OWL ...
1
vote
2answers
258 views
automatic generated forms ,workflows
my question consists of 2 parts
if I have a bean could i automatically generate the form from it
if i have many beans , is it possible to automatically generate a workflow of the automatically ...
0
votes
0answers
335 views
Extracting values from OWL Classes
I'm using the FaCT++ reasoner and the Manchester OWL API provided here: http://owlapi.sourceforge.net/
I have an OWL detailing the elements in the periodic table, however I am struggling to extract ...
3
votes
1answer
834 views
OWL Individual in java
I'm trying to access ontologies via Eclipse. I use the owl-api. I create my ontologies in Protegé, however I want to create and classify new INDIVIDUALS by code. How is that possible? I googled ...
3
votes
1answer
598 views
get restrictions on classes in jena
Here is what I am trying to get:
Using the pizza ontology
Use case:
I want to be able to look up all the toppings for American Pizza.
If I open the ontology in protege, I can see that American Pizza ...
2
votes
1answer
529 views
I cannot remove values of data type properties in Jena
I'm trying to remove values of datatype properties of an instance through an interface which I created in java but it does not work. It gives me an
Exception in thread "AWT-EventQueue-0" ...
1
vote
2answers
572 views
How can I modify or remove properties values? - Jena API
I'm using Jena. I would like to know if there is a method that allows to modify or remove properties values of an instance?
Thanks
0
votes
2answers
720 views
Api Jena - I'm getting a Warn “RDFDefaultErrorHandler”
I'm using Jena. I created an interface that allows to add, modify and remove instances in rdf file. I'm getting this warn when I execute my code:
WARN [main] (RDFDefaultErrorHandler.java:36) - ...
0
votes
1answer
81 views
API Jena - Button “Next” of my interface is not working properly
I'm using Jena. I created an interface that allows to add, modify and remove instances in rdf file. I have a problem with Button Next. It works but not perfectly. I would like that it returns to the ...
0
votes
1answer
832 views
API Jena - Get values of data properties
I created an interface in java with 4 labels, 4 textfields and some buttons like "Add", "modify, "next", etc. The user will enter name, first name, birth date, etc. After clicking the button "add", ...
2
votes
3answers
115 views
How to increment a Resource?
I have a function that adds instances (and their properties values) of class Person in a RDF file when I click on the Add button. I can add the first instance, but when I try to add the second, it ...
1
vote
2answers
1k views
Using Jena Api in Java Web… Unknown Exception
Hi all
Did anyone encountered this exception while using Jena in Java Web Application... Please Kindly help me ..
here is my servlet code
package com.mycompany.servlet;
import ...
1
vote
3answers
340 views
CRUD Operation in OWL
I have created an ontology. Now I want to create an application but how can I perform CRUD operations in owl file. I came across different apis like Dotnetrdf, jena etc all support RDF/RDFS but there ...

