Re: Any23 class constructor

2015-04-08 Thread Michele Mostarda
Dear Murick, in line 4 final Any23 runner = new Any23(modifiableConf,"rdf-nt"); you're declaring an Any23 instance wich suppors only RDF Ntriples extractor. You should instead specify the json-ld extractor if you consider to process JSONLD only or even better activate all extractors simp

Re: Any23 class constructor

2015-04-07 Thread Murick
Hi Michele, Sorry for bothering you with questions, but I am stuck in the JSONLD-N-Triples conversion. As you recommended, I changed an input file extension to .jsonld. However, the file content doesn’t get converted. Here’s the code fragment. Thank you in advance. final ModifiableCon

Re: Any23 class constructor

2015-04-03 Thread Michele Mostarda
Hi Murick, it seems it doesn't recognize the file mimetype (it tries to parse it as RDF-NT instead than JSONLD). Try to rename the file using jsonld extension: File myFile = new File(“input/file.jsonld."); Best Michele On 3 April 2015 at 03:09, Murick wrote: > Hi Michele, > Thank you for re

Re: Any23 class constructor

2015-03-26 Thread Michele Mostarda
Hi Murick, I suggest you just to execute the command mvn dependency:tree from the root of the project source (the root module) and you will obtain for every module the full Maven dependency tree. Best Michele On 25 March 2015 at 20:56, Murick wrote: > Hi Michele, > Thank you for recommendat

Re: Any23 class constructor

2015-03-25 Thread Murick
Hi Michele, Thank you for recommendations. Can you please tell me what modules (jar files) should I include into my classpath ?

Re: Any23 class constructor

2015-03-25 Thread Michele Mostarda
Hi Murick, I didn't reproduce your issue, however it seems in your classpath is missing at least the apache-any23-encoding 1.1 module dependency. I would try adding it Best Michele On 24 March 2015 at 03:35, Murick wrote: > Hi Michele, > Sure, here it is: > > { > "@context": { > "name": "h

Re: Any23 class constructor

2015-03-23 Thread Murick
Hi Michele, Sure, here it is: { "@context": { "name": "http://xmlns.com/foaf/0.1/name";, "homepage": { "@id": "http://xmlns.com/foaf/0.1/workplaceHomepage";, "@type": "@id" }, "Person": "http://xmlns.com/foaf/0.1/Person"; }, "@id": "http://me.markus-lanthaler.com

Re: Any23 class constructor

2015-03-23 Thread Michele Mostarda
Hi Murick, could you send us the input JSON? Best Michele On 23 March 2015 at 04:29, Murick wrote: > Hello everyone, > I am trying to convert RDF from JSON format into N-Triples. While trying > to call Any23 from java program, I encountered with the following error: > > >

Any23 class constructor

2015-03-22 Thread Murick
Hello everyone, I am trying to convert RDF from JSON format into N-Triples. While trying to call Any23 from java program, I encountered with the following error: Exception in thread