1

1

What are the popular free/paid .net based RDF stores?

flag

3 Answers

2

As far as I know the only entirely .Net based Triple Store is Semantics Server from Intellidimension which is a paid product backed by SQL Server which requires licenses for both their product and SQL Server in order to run.

As far as free libraries go both dotNetRDF (disclaimer: which I develop) and SemWeb support connecting to various different 3rd party Triple Stores.

dotNetRDF supports AllegroGraph, 4store, Joseki, Sesame, Talis and Virtuoso
SemWeb I think can support Virtuoso but I've never tried this personally, I think you may also need to install LinqToRdf to do this

Both these libraries also can create SQL backed stores using various different backing SQL databases but these stores will not be as efficient as connecting to a dedicated triple store.

Edit

Key message to take away from this is that there are lots of good non .Net Triple Stores out there already and you should take advantage of those as many can run in a Windows/.Net environment and you can use .Net libraries to communicate with them if like me you prefer to work in ,Net

link|flag
1

See also: Jena .NET (However, I've never used it myself).

What is Jena .NET?

Jena .NET is .NET port or the well-established open source Jena library. Jena is natively a Java library, and so Jena .NET uses the IKVM virtual machine to expose the Jena class framework to the .NET CLR.

What does this mean? It means that as new updates to the Jena library are released by the active Jena working group, these new updates and associated benefits can immediately get integrated into the Jena .NET library.

-- http://www.linkeddatatools.com/faq

link|flag
0

Lately I noticed Sesame has HTTP component that can be used for interfacing. An application in C# and semantic component in Java served over HTTP (REST or something).

link|flag
dotNetRDF already has a connector class that uses the Sesame HTTP protocol to connect to any compliant store - we use this for connections to Sesame and AllegroGraph – Rob Vesse Aug 2 at 7:13

Your Answer

Get an OpenID
or

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