Re: [Virtuoso-users] Load NQuad data into Virtuoso

2014-07-11 Thread Julien Plu
Hi Hugh, I use virtjdbc4_1.jar : java -jar ~/.m2/repository/com/openlinksw/virtuoso/virtjdbc/4.1/virtjdbc-4.1.jar And for virtjena, I recompiled it myself, I just changed the Jena version from 2.10.1 to 2.11.2. The classpath line that I used looks like this : JENA_CLASSPATH = .:lib/junit-4.5.ja

Re: [Virtuoso-users] Load NQuad data into Virtuoso

2014-07-11 Thread Hugh Williams
Hi Julien, Where did you get the "OpenLink Virtuoso(TM) Provider for Jena(TM) Version 2.10.1 [Build 1.10]" virt_jena2.jar from as when I check the in the git stable and develop 7 branches the version is 1.9: [virtuoso@masala git]# java -jar virt-develop7/binsrc/jena2/virt_jena2.jar OpenLink V

Re: [Virtuoso-users] OAuth sparql endpoint access issues

2014-07-11 Thread Julien Plu
Hi Sebastian, No problem :-) So here the address and logs to test. I created a user and its logs are (this user has absolutely no rights on the Virutoso instance) : account : test password : test So if you log this user here : http://data.lirmm.fr/oauth you will that there is already a key whi

Re: [Virtuoso-users] OAuth sparql endpoint access issues

2014-07-11 Thread Sebastian TrĂ¼g
yes, please, sorry, my other email did not get through to the list. On 10.07.2014 10:12, Julien Plu wrote: > Hi Sebastian, > > Would you like to test this behaviour on my machine, as I said I can > provide you an access and mayble you will able to solve it :-) > > Best > > Julien. > > > 2014-07-08

Re: [Virtuoso-users] Load NQuad data into Virtuoso

2014-07-11 Thread Julien Plu
Hi Hugh, Apparently, yes, it appears with Jena and the Virtuoso wrapper. I have also another problem with virtjena2, with my main Virtuoso instance (Virtuoso 7.1 stable), I can connect me via JDBC without any problems, but if I use another one (Virtuoso 7.1.1-dev, last version of the develo/7 bran

Re: [Virtuoso-users] Load NQuad data into Virtuoso

2014-07-11 Thread Hugh Williams
HI Julien, I see you reposted this question on the jena mailing list this I assume the problem occurs with the Jena storage engine also and is thus most likely in the Jena layer and Virtuoso ? Best Regards Hugh Williams Professional Services OpenLink Software, Inc. // http://w

Re: [Virtuoso-users] Load NQuad data into Virtuoso

2014-07-11 Thread Julien Plu
Sorry a little mistake in the code : Model md = VirtModel.openDatabaseModel("http://example.com";, URL, USER, PASS); RDFDataMgr.read(md, Files.newInputStream(Paths. get("data.nq")), Lang.NQUADS); 2014-07-11 15:47 GMT+02:00 Julien Plu : > Hi, > > I'm trying to load a N-Quad file into Virtuoso

[Virtuoso-users] Load NQuad data into Virtuoso

2014-07-11 Thread Julien Plu
Hi, I'm trying to load a N-Quad file into Virtuoso but with the "virtjena" wrapper. What I'm doing is as simple as this : Model md = VirtModel.openDatabaseModel("http://example.com";, URL, USER, PASS); RDFDataMgr.read(md, Files.newInputStream(Paths.get(PrivacyDeployment.FILE)), Lang.NQUADS); Bu