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 is not support for owl file

http://www.semanticoverflow.com/questions/2704/using-jena-to-query-owl-files

Problem of reading OWL/XML

Also, most of apis are available in Java and I dont know how to write simple hello world program in java. I am confused with servlet, jsp and .java and lots of configuration is required. So I prefer php.

So is there any api or any alternative way to query owl file in php ?

Regards, anas anjaria

link|improve this question
feedback

3 Answers

The only libraries I know that support SW standards in PHP are rdfapi [1] and redland php binding [2], but the level is RDF (i.e. the building block of RDFS and OWL) you will need to add CRUD operations at the triple level (i.e. simple axioms like foaf:knows )

[1] http://www4.wiwiss.fu-berlin.de/bizer/rdfapi/

[2] http://librdf.org/docs/php.html

link|improve this answer
Thanx for your response , but rdfapi support rdf not owl. Owl is an extension of rdf. We can add intellligence in owl file. There are axiom which have support in owl file but not rdf. – anasanjaria Mar 18 '11 at 6:14
feedback

So, it looks like you're talking about the Web Ontology Language, an XML/RDF dialect.

A few moments in Google shows pretty much zero interest in this in the world of PHP.

But, being XML, you can use one of the PHP XML extensions so read and work with the XML directly without a problem. How well this will actually work for you, I can't say. OWL looks freakishly complex, and working with it at the DOM node level will very likely stretch your sanity far worse than working with mature, established libraries in Java.

link|improve this answer
feedback

i made my final project at the university by using Jena. The Research Group where i work develop ontology generator tool which is capable of all crud operations. They also developed the Eclipse plug-in of this project.

You just create your OWL Data Model in the editor and right click the data model create everything, i creates owl files, Crud class and it's test codes for you.

Let's check it out

Download

Name of Plug-in is "SEAGENT Ontology Generator Plugin (Beta)"

I hope it will be beneficial for you like me

link|improve this answer
Can u plz tell me your email address so that I can contact with you. Its also my final year project – anasanjaria Mar 18 '11 at 6:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.