0
votes
1answer
40 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
1answer
23 views
How to attribute an array to custom type in ROWLEX
I have some custom type:
[RdfSerializable]
public class Item
{
[RdfProperty(true)]
public string Name { get; set; }
}
and some other type that has array of Item:
[RdfSerializable]
public …
0
votes
1answer
39 views
Rowlex: A property node cannot contain more than one entity description
Hi,
when using Rowlex OwlGrinder to generate an assembly from an OWL file the above error message is shown.
The offending piece of OWL/XML is for example:
<DisjointClasses>
<Class …
0
votes
1answer
76 views
Problem in retrieving property value of an instance of an OWL class
Hello,
I have some owl classes which have instances. These classes also have properties which have value for each instance. I've made my ontology by Protege3.4, and made c# library by Rowlex from …
0
votes
1answer
52 views
How to define a property with same name on two different types in ROWLEX?
If I have those two classes that have two different properties but with the same name:
[RdfSerializable]
public class Type1
{
[RdfProperty(true), Name = "title"]
public string Title { get; …
0
votes
1answer
85 views
Get individuals of an ontology class in .Net
Hi,
Regarding to my previous post,
now when I'm testing, progFields in below:
System.Reflection.FieldInfo[] progFields = typeof(Program).GetFields();
returns nothing. My ontology about Program is …
1
vote
4answers
155 views
OWL Assembly Generation Problem (OWLGrinder)
I am building an assembly from my OWL ontology, but when parsing ontology, it raises an error message at "datatype properties" where a type is declared and some values are given. I've written my …
0
votes
2answers
69 views
Removing individuals & properties from RDF
Hello,
I have a RDF file in my semantic web project and I use Rowlex for manipulating it.
I've needed to remove an individual from RDF, so I used
<RDFDoc instance>.RemoveIndividual(new …
0
votes
1answer
54 views
Using RdfProperty of array to custom class
I have defined:
[RdfSerializable]
public class SomeItem
{
// Unique identificator of the resource
[ResourceUri]
public string ID { get; set; }
[RdfProperty( true )]
public string …
2
votes
2answers
75 views
Assigning multiple values to a property
Hello,
I am using rowlex in my project. I have a property assigned to an individual in my RDF file, which has a value. For example for individual 'Student', there is a property 'isMemberOf', with …
0
votes
1answer
47 views
In ROWLEX is there a way to remove “rdf:datatype” from serialized object?
In ROWLEX is it possible to remove "rdf:datatype" attribute of each property and/or use common RDF Schema instead?
Example:
<MyOntology:Channel>
<MyOntology:title …
2
votes
2answers
74 views
Could ROWLEX be used as .DLL files in commercial projects (because of some non-LGPL components)?
As people asked in How can ROWLEX be licensed under L-GPL while it uses SemWeb which is GPL? there is no definition if ROWLEX could be used as a library freely in commercial projects. How free is to …
1
vote
1answer
46 views
How do I deserialize a OWL document?
Hello,
I created a bunch of classes using ROWLEX and had them serialized to RDF using
RdfDocument rdfDocument = Rdfizer.Serialize(ontology);
Now i would like to deserialize it (similar to how …
3
votes
2answers
93 views
How can ROWLEX be licensed under L-GPL while it uses SemWeb which is GPL?
According to its homepage, the SemWeb library (great library for handling RDF under .NET) is released under GPL. Since the ROWLEX tool is built on SemWeb, ROWLEX supposed to be GPL, too. Still, ROWLEX …
0
votes
1answer
14 views
Problem with Rowlex- dateTime retrieving
Hello,
I've encountered a problem in Rowlex recently. It is related to datetime retrieving.
In my RDF file, I have two instances like this:
<Ontologyowl:Note …
