R – Semantic Web :Tutorial on RDF dev

rdfsemantic-web

I am new to Semantic Web. I want to start working on creating some basic RDF document and publish them to get a feel how it works.I found a lot of information about the concepts,vocabulary etc but I couldn't find any thing related to development as what is the development environment required, what are the tool required. I am from .net background . Is there any tutorial available on how to get started and use rdf in web pages.

Best Answer

Its real easy to be confused at first, but its ultimately simple enough. I liked this UMBC equity video tutorial on RDFa, its starts by explaining RDF, gives you a nice human readable notation for reference (N3) and then shows you how to put RDF into normal web pages using the RDFa attributes.

I've also started publishing my own RDFa about music events and found the RDFa distiller handy for translating my RDFa into alternative syntaxes (there are lots) so that I can check my work.

If RDFa suits your use-case, then check out the RDFa.info wiki for a review of common errors. Even MySpace got some of these wrong.

It should be noted that RDFa is not the only way to publish RDF, but its the most awesome :-)

Related Topic