John Wubbel wrote: > Gentlemen: > In Piggy-Bank within the Commands tab is the Export button and the mouse > rollover says it exports RDF. Am I correct to assume that the output > looks more like a NTripleStore rather than an RDF/XML output. While I am > not to familiar with all the code, I think this method is found in > package edu.mit.simile.piggyBank.dumper so my question is how would this > output be useful? Would not the intended output be RDF/XML. I see in > Dumper.java the use of org.openrdf.rio.ntriples.NTriplesWriter is used > instead of org.openrdf.rio.rdfxml.RdfXmlWriter so is this an issue or > just something that did not get fully implemented? I am asumming Dumper > is the code that support the Export. Thanks.
NTriples is an RDF graph serialized in one particular syntax. It can be read by numerous RDF manipulating programs, including Sesame. It need not be RDF/XML to be RDF. You can stick 'format=rdfxml' at the end of the URL if you want the RDF/XML output. This will be amended to be RDF/XML by default in the next release of Piggy Bank. -- Ryan Lee [EMAIL PROTECTED] W3C Research Engineer +1.617.253.5327 http://simile.mit.edu/ _______________________________________________ General mailing list [email protected] http://simile.mit.edu/mailman/listinfo/general
