Hi Hoan,

You are asking what looks like a commercial licensing question (ie Number of 
licensed connections exceeded error) on an open source mailing list, please log 
a support case or use our support forum fro asking such questions:

        http://support.openlinksw.com/support/online-support.vsp
        http://boards.openlinksw.com/support

Basically check the “virtuoso.log” file to see the startup log and what is 
reported when it attempt to locate the license file for use, I suspect it has 
not been found, has expired or something ...
        
Best Regards
Hugh Williams
Professional Services
OpenLink Software
Web: http://www.openlinksw.com
Support: http://support.openlinksw.com
Forums: http://boards.openlinksw.com/support
Twitter: http://twitter.com/OpenLink

On 24 Nov 2011, at 14:04, Nguyen Mau Quoc Hoan wrote:

> Hi.I've just downloaded the newest version of Virtuoso (glibc 2.12 x86 
> (32-bit). After activated, I tried to connect to Virtuoso server by using 
> Java but I always get error:
>        08004 LI100: Number of licensed connections exceeded
> How could I fix it?
> This is my code (example 1):
>      String url;
>             if(args.length == 0)
>                 url = "jdbc:virtuoso://localhost:1111";
>             else
>                 url = args[0];
> 
>     /*            STEP 1            */
>             VirtGraph set = new VirtGraph (url, "dba", "dba");
> 
>     /*            STEP 2            */
> 
> 
>     /*            STEP 3            */
>     /*        Select all data in virtuoso    */
>             Query sparql = QueryFactory.create("SELECT * WHERE { GRAPH ?graph 
> { ?s ?p ?o } } limit 100");
> 
>     /*            STEP 4            */
>             VirtuosoQueryExecution vqe = VirtuosoQueryExecutionFactory.create 
> (sparql, set);
> 
>             ResultSet results = vqe.execSelect();
>             while (results.hasNext()) {
>                 QuerySolution result = results.nextSolution();
>                 RDFNode graph = result.get("graph");
>                 RDFNode s = result.get("s");
>                 RDFNode p = result.get("p");
>                 RDFNode o = result.get("o");
>                 System.out.println(graph + " { " + s + " " + p + " " + o + " 
> . }");
>             }
>         }
> Thanks.
> ------------------------------------------------------------------------------
> All the data continuously generated in your IT infrastructure 
> contains a definitive record of customers, application performance, 
> security threats, fraudulent activity, and more. Splunk takes this 
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d_______________________________________________
> Virtuoso-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/virtuoso-users

Attachment: smime.p7s
Description: S/MIME cryptographic signature

Reply via email to