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

2014-07-22 Thread Julien Plu
Hi Hugh, My Java version is : julien-plu@data:~$ java -version java version "1.7.0_55" Java(TM) SE Runtime Environment (build 1.7.0_55-b13) Java HotSpot(TM) 64-Bit Server VM (build 24.55-b03, mixed mode) And if I try with virtjdbc4.jar the same error occurs : julien-plu@data:~$ javac -cp "virtu

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

2014-07-14 Thread Julien Plu
Hi hugh, I created an issue on the github wich make reference to this problem where I resume really exerything : https://github.com/openlink/virtuoso-opensource/issues/216 Best. --

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

2014-07-13 Thread Hugh Williams
Hi Julien, Forgot to include my JDBC Driver version which is the same as yours as would be expected being from the repo: [virtuoso@masala vos]# java -jar /2d2/git/virt-develop7/libsrc/JDBCDriverType4/virtjdbc4_1.jar OpenLink Virtuoso(TM) Driver for JDBC(TM) Version 4.1 [Build 3.70] My Java ver

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

2014-07-12 Thread Julien Plu
Hi Hugh, No, I didn't recompile the JDBC driver, I use it as it is from the repository, so here the same output than you but with the error : julien-plu@data:~$ javac -cp "virtuoso-opensource/libsrc/JDBCDriverType4/virtjdbc4_1.jar:." Test.java julien-plu@data:~$ java -cp "virtuoso-opensource/libs

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

2014-07-12 Thread Hugh Williams
Hi Julien, So this is a JDBC program indicating the JDBC driver (virtjdbc4_1.jar) is causing the issue, did you compile this from source also ? Running against the latest develop/7 build you sample program does run without error for me: [virtuoso@masala vos]# javac -cp "/2d2/git/virt-develop7

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] 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