Tagged Questions
0
votes
1answer
41 views
how to retrieve data from SPARQL endpoint in json format bulit on visual studio 2010
i have an app which retrieves data from endpoint:http://dblp.l3s.de/d2r/snorql/, connection is made there,query is sent and results received.
How do i receive the data in JSON format,the endpoint has ...
0
votes
1answer
45 views
.net rdf dblp dataset querying
when i run the following code to query the dblp dataset using this code snippet
i am using this endpoint http://dblp.l3s.de/d2r/snorql
enter code hereString st = "";
String qry = "";
...
0
votes
1answer
42 views
Querying DBLP database
I want to query the DBLP databse using this end point:
http://dblp.l3s.de/d2r/snorql/
My code snippet:
String st = "";
String qry = "";
String uri_V;
String dguri_V;
uri_V = ...
0
votes
0answers
31 views
Exception happens during parsing N3 file
I'm trying to parse N3 DBPedia dump file using SemWeb. Here is my simple code:
Imports SemWeb
....
....
Dim store As New MemoryStore
Dim sr As New System.IO.StreamReader(chunkFile)
store.Import(New ...
0
votes
0answers
35 views
Auto generated tags for the contents in .NET [closed]
I have many articles about important and known persons. Is there any solution to generate tags for each article? Where should I begin?
2
votes
1answer
26 views
Different result in DBPedia using WebClient and browser
I want to extract some information which exists in DBPedia. So, I've written an application using .NET's System.Net.WebClient which gets urls and returns the content of url in N-Triples format (plain ...
2
votes
1answer
235 views
downloading and setting up the dbpedia dump
I am trying to download the DBpedia dumb to my local computer so that I can do queries locally.
After taking a look at the Downloads I have some questions.
-What exactly do download ?
-How to load ...
3
votes
2answers
94 views
How to transform RDFS to RDFS?
I have two RDF schemas and I need to convert one to another.
Is there any transformation language analogue to XSLT just for RDFS?
I'm looking for a possible implementation in .NET, but other platforms ...
1
vote
2answers
249 views
Returning RDF from Controller Action - ASP.NET MVC
I have a controller action that returns a RDF document as XML to the browser. The browser complains that the document cannot be displayed:
The namespace prefix is not allowed to start with the ...
1
vote
1answer
1k views
OpenCalais Parse RDF in .NET
is there a way to parse OpenCalais RDF in .NET as i'm using dotnetRDF and it keeps giving me errors. A sample of the Rdf generated may be found in http://viewer.opencalais.com/ , i'm honestly really ...
1
vote
1answer
386 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
40 views
Doubled tags for one property in ROWLEX
I have this code:
[RdfSerializable( HasResourceUri=false )]
public class Item
{
[RdfProperty(true)]
public string MyProp;
}
[RdfSerializable]
public class AllItems
{
...
0
votes
1answer
84 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 ...
1
vote
1answer
75 views
Is ROWLEX supports natively IEnumerable<>?
Is ROWLEX supports IEnumerable? Because when I use RdfProperty(true) with string[] it is working correctly, but when I write IEnumerable< string > type of property and return string[] (that is ...
2
votes
1answer
139 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 ...
3
votes
2answers
369 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 ...
5
votes
2answers
190 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 ...
2
votes
2answers
575 views
Programatically generating assemblies from OWL files with ROWLEX
I have been using the ROWLEX library to handle RDF-s. It is shipped with a designtime GUI tool called OwlGrinder.exe that can generate C# helper classes (.NET assemblies to be exact) from my OWL ...
10
votes
5answers
5k views
What is a good RDF library for .net?
I'm looking for a library that can deal with RDF and OWL data.
So far I have found:
semweb (no owl support for all I know)
rowlex (more of a 'browser' application)
Your recommendations:
...