Tagged Questions

2
votes
1answer
103 views

create RDF using defined OWL ontology

I'm generating RDF for a database table(s). I generated OWL ontology for the table(s) using Protege. I want to use this OWL ontology and create the RDF in RDF/XML format for table data using Jena. I ...
2
votes
1answer
108 views

Architecture for Semantic Web Framework

I am doing a project on Web Based Ontology for E-citizenship where a ".owl" file will be generated using Protege OWL editor. We have to use that file for enabling Web service. Can anyone suggest me ...
2
votes
1answer
130 views

Updating OWL issue with JENA library and Protege

I'm new to this forum! I can't save any writing update to my RDF/XML OWL file using Protege. Each time I close the application I then loose all my editing. I've used JENA library to read this file ...
2
votes
0answers
331 views

Using Protege owl ontology on Android

I have a practical seminar this semester, and I want to use ontology on Android application. I choose Protege owl ontology as a ontology API and this tool worked in normal Java project. But when I ...
1
vote
1answer
130 views

Protege - Specifying primary key and foregin key for RDF file

Using protege, I am creating RDF file. Now I want to know to how to specify an slot is an primary and foreign keys to the given classes? Thanks in advance
1
vote
3answers
181 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 ...
1
vote
2answers
221 views

Displaying Relations in Protege-OWL Editor

I have created a basic Class hierarchy for my ontology in Protege-OWL Editor version 4.1. But I am not able to visualise Object Properties and relations between the classes in OwlViz other than the ...
1
vote
1answer
285 views

RDF and OWL workflow question

I have been looking at and playing with OWL through Protege and I would like to know if I understand the "workflow" and idea of it correctly (for building up a database from scratch: Generate an OWL ...
1
vote
2answers
426 views

Solving 'logicals' with Protege: how to get individual results?

Perhaps a stupid newbie question: i would like to get in touch with ontologies and reasoning. There is an interesting 'logical' on the net that can also be solved with the help of ontologies and ...
1
vote
1answer
251 views

RDF/OWL/Protege: let a subclass be a union of some disjoint super classes?

I have following classes: Classes B, C and D are the subclasses of A. A ----+----------> B | +----------> C | +----------> D Besides, I have an object property, ...
1
vote
1answer
309 views

How does Rowlex relate to Protege and are there other .NET offerings for OWL?

I work with RDF and OWL but until I came to SO I'd never heard of Rowlex and OwlGrinder. It's got a much larger presence on SO than Protege or Pellet (although from a smallish number of active ...
0
votes
0answers
49 views

How to show eqiuvalence between 2 instances in protege owl

I am new to Protege OWL. I created 2 classes. These classes have some datatype properties. Its like : Class : JSkill has datatype property: JSkillname Class : CSkill has datatype property: ...
0
votes
1answer
351 views

How to use DL Query programmatically

I would like to know whether I can use DL Query in Protege programatically. Is it possible to enter a query in java and retrieve individuals like how it is done in SQL ? E.g. Query : ...
0
votes
1answer
2k views

how to create Java Application and query about OWL using SPARQL/Jena and how to do it on local/remote?

I want to create simple application using Java Jena and SPARQL ,that insert, delete , update and query the OWL/RDF data I worked on protege to create the ontology and noticed SPARQL in it but I want ...
0
votes
1answer
178 views

How to use OWL/RDL to represent and query a connected graph?

In PROLOG you can represent and query a connect graph, as in this tutorial: http://www.csupomona.edu/~jrfisher/www/prolog_tutorial/2_15.html How would you do this using an OWL/RDL tool such as ...
0
votes
1answer
495 views

Error when compiling code with the Protege API

I am new to Protege API and I have just created on Eclipse a small application which uses an external OWL file. Also I did import all the necessary libraries. import java.util.Collection; import ...