CSV to RDF with delimiter |

2015-10-01 Thread Kim A. Jakobsen
Hi I am trying to convert some CSV data into rdf. My code looks as following: Model model_csv_array_impl = ModelFactory.createModelForGraph(new GraphCSV(getDatasetPath()+"/item.dat")); // PropertyTableArrayImpl Dataset dataset = TDBFactory.createDataset(directory) ; dataset.begin(Read

Re: SPARQL service not protected by shiro in Fuseki 2

2015-10-01 Thread Sayah Tarek
Thank you andy, this is very useful. On Wed, Sep 30, 2015 at 10:51 PM, Andy Seaborne wrote: > On 30/09/15 14:49, Sayah Tarek wrote: > >> Hello, >> I enabled basic authentication in Jena Fuseki2 by uncommenting /$/** = >> authcBasic,user in shiro.ini file. When I use the web page, I am asked to >

Fuseki 2.3.0 not returning prefix declarations from TextDataset using graph protocol

2015-10-01 Thread Miika Alonen
Hi, Fuseki 2.3.0 doesnt seem to return prefixes and namespaces from text:TextDataset with graph protocol. You would expect that these return the same result: GET /textDataset?default HTTP/1.1 Host: localhost:3030 Accept: text/turtle; charset=utf-8 and CONSTRUCT { ?s ?p ?o } WHERE { ?s ?p

ResourceFactory.createTypedLiteral(Object value, RDFDatatype dtype) missing?

2015-10-01 Thread Martynas Jusevičius
Hey, when I compare Model with ResourceFactory, Model has the following methods createTypedLiteral(Object value) createTypedLiteral(Object value, RDFDatatype dtype) createTypedLiteral(String lex, RDFDatatype dtype) while ResourceFactory only has createTypedLiteral(Object value) create