Re: [Virtuoso-users] Possible compatibility between 6.1.16 and 6.1.8?

2014-02-03 Thread Frederick Giasson

Hi Hugh,



You can track withthe atom feed, to see when a fix for this issue has 
been published:


https://github.com/openlink/virtuoso-opensource/commits/develop/6.atom

or you could log the issue on the git tracker and would get 
notification when the issue has been fixed ...


https://github.com/openlink/virtuoso-opensource/issues?state=open


Good thanks, just did it here:

https://github.com/openlink/virtuoso-opensource/issues/131


Thanks,

Fred
--
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231iu=/4140/ostg.clktrk___
Virtuoso-users mailing list
Virtuoso-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/virtuoso-users


Re: [Virtuoso-users] Possible compatibility between 6.1.16 and 6.1.8?

2014-01-31 Thread Hugh Williams
Hi Fred,

You can track withthe atom feed, to see when a fix for this issue has been 
published:

https://github.com/openlink/virtuoso-opensource/commits/develop/6.atom

or you could log the issue on the git tracker and would get notification when 
the issue has been fixed ...

https://github.com/openlink/virtuoso-opensource/issues?state=open

Best Regards
Hugh Williams
Professional Services
OpenLink Software, Inc.  //  http://www.openlinksw.com/
Weblog   -- http://www.openlinksw.com/blogs/
LinkedIn -- http://www.linkedin.com/company/openlink-software/
Twitter  -- http://twitter.com/OpenLink
Google+  -- http://plus.google.com/100570109519069333827/
Facebook -- http://www.facebook.com/OpenLinkSoftware
Universal Data Access, Integration, and Management Technology Providers

On 30 Jan 2014, at 23:29, Frederick Giasson f...@fgiasson.com wrote:

 Hi Hugh!
 
 Great thanks!
 
 Is ther a way to follow the evolution of the resolution of this issue?
 
 And normally, the fix will be in 6.1.9, or there will be any ways to add the 
 fix to the 6.1.8 codebase (maybe via a patch file?)
 
 Thanks,
 
 Fred
 
 Hi Fred,
 
 This looks like a general bug in the latest builds, as I get the same error 
 running the following similar query against our v7 LOD Cloud server, 
 http://lod.openlinksw.com/sparql:
 
 select ?s ?p ?o (DATATYPE(?o)) as ?otype (LANG(?o)) as ?olang
 where 
 {
   {
 select distinct ?s  
 where 
 {
   ?s a ?type.
 } 
 limit 50 
 offset 0
   } 
   
   ?s ?p ?o
 }
 
 and have reported this to development to look into ...
 
 Best Regards
 Hugh Williams
 Professional Services
 OpenLink Software, Inc.  //  http://www.openlinksw.com/
 Weblog   -- http://www.openlinksw.com/blogs/
 LinkedIn -- http://www.linkedin.com/company/openlink-software/
 Twitter  -- http://twitter.com/OpenLink
 Google+  -- http://plus.google.com/100570109519069333827/
 Facebook -- http://www.facebook.com/OpenLinkSoftware
 Universal Data Access, Integration, and Management Technology Providers
 
 On 30 Jan 2014, at 18:23, Frederick Giasson f...@fgiasson.com wrote:
 
 Hi,
 
 I am wondering if I found a compability issue between VOS 6.1.6 and 6.1.8.
 
 I did compile VOS 6.1.8 without any issues, then I ran with with a VOS 
 6.1.6 database file. There was no issues, and everything was working as 
 expected, until I use the following SPARQL query:
 
 
 ==
 select ?s ?p ?o (DATATYPE(?o)) as ?otype (LANG(?o)) as ?olang
 where 
 {
   {
 select distinct ?s from 
 http://localhost/datasets/organizations/import 
 where 
 {
   ?s a ?type.
 } 
 limit 50 
 offset 0
   } 
   
   ?s ?p ?o
 }
 ==
 
 If I am requesting the following mimes to the /sparql/ endpoint:
 
   (a) application/sparql-results+xml
   (b) application/sparql-results+json
 
 I am getting the following content from the endpoint:
 
 
 ==
 sparql xmlns=http://www.w3.org/2005/sparql-results#; 
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
 xsi:schemaLocation=http://www.w3.org/2001/sw/DataAccess/rf1/result2.xsd;
  head
   variable name=s/
   variable name=p/
   variable name=o/
   variable name=otype/
   variable name=olang/
  /head
  results distinct=false ordered=true
   result
binding 
 name=surihttp://localhost/resources/organization/Random_House/uri/binding
binding 
 name=purihttp://www.w3.org/1999/02/22-rdf-syntax-ns#type/uri/binding
binding 
 name=ourihttp://dbpedia.org/ontology/Publisher/uri/binding
   /result
   result
binding 
 name=surihttp://localhost/resources/organization/Random_House/uri/binding
binding 
 name=purihttp://www.w3.org/1999/02/22-rdf-syntax-ns#type/uri/binding
binding 
 name=ourihttp://www.w3.org/ns/org#Organization/uri/binding
   /result
   result
binding 
 name=surihttp://localhost/resources/organization/Random_House/uri/binding
binding name=purihttp://xmlns.com/foaf/0.1/homepage/uri/binding
binding name=ourihttp://www.randomhouse.com/uri/binding
   /result
   result
binding 
 name=surihttp://localhost/resources/organization/Random_House/uri/binding
binding 
 name=purihttp://dbpedia.org/ontology/numberOfEmployees/uri/binding
binding name=oliteral 
 datatype=http://www.w3.org/2001/XMLSchema#integer;5712/literal/bindingVirtuoso
  22023 Error SR544: Function __xsd_type() can not find XML Schema datatype 
 that matches SQL datatype UNAME (217)
 
 SPARQL query:
 select ?s ?p ?o (DATATYPE(?o)) as ?otype (LANG(?o)) as ?olang
   where 
   {
 {
   select distinct ?s from 
 http://localhost/datasets/organizations/import 
   where 
   {
 ?s a ?type.
   } 
   limit 50 
   offset 0
 } 
 
 ?s ?p ?o
   }
 ==
 
 
 Obviously, the error is related to the datatype request. However, I am not 
 sure why it chokes there, and in that way. If I request the text/html mime, 
 it works fine.
 
 Is it 

[Virtuoso-users] Possible compatibility between 6.1.16 and 6.1.8?

2014-01-30 Thread Frederick Giasson

Hi,

I am wondering if I found a compability issue between VOS 6.1.6 and 6.1.8.

I did compile VOS 6.1.8 without any issues, then I ran with with a VOS 
6.1.6 database file. There was no issues, and everything was working as 
expected, until I use the following SPARQL query:



==
select ?s ?p ?o (DATATYPE(?o)) as ?otype (LANG(?o)) as ?olang
where
{
  {
select distinct ?s from 
http://localhost/datasets/organizations/import

where
{
  ?s a ?type.
}
limit 50
offset 0
  }

  ?s ?p ?o
}
==

If I am requesting the following mimes to the /sparql/ endpoint:

  (a) application/sparql-results+xml
  (b) application/sparql-results+json

I am getting the following content from the endpoint:


==
sparql xmlns=http://www.w3.org/2005/sparql-results#; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://www.w3.org/2001/sw/DataAccess/rf1/result2.xsd;

 head
  variable name=s/
  variable name=p/
  variable name=o/
  variable name=otype/
  variable name=olang/
 /head
 results distinct=false ordered=true
  result
   binding 
name=surihttp://localhost/resources/organization/Random_House/uri/binding
   binding 
name=purihttp://www.w3.org/1999/02/22-rdf-syntax-ns#type/uri/binding
   binding 
name=ourihttp://dbpedia.org/ontology/Publisher/uri/binding

  /result
  result
   binding 
name=surihttp://localhost/resources/organization/Random_House/uri/binding
   binding 
name=purihttp://www.w3.org/1999/02/22-rdf-syntax-ns#type/uri/binding
   binding 
name=ourihttp://www.w3.org/ns/org#Organization/uri/binding

  /result
  result
   binding 
name=surihttp://localhost/resources/organization/Random_House/uri/binding
   binding 
name=purihttp://xmlns.com/foaf/0.1/homepage/uri/binding

   binding name=ourihttp://www.randomhouse.com/uri/binding
  /result
  result
   binding 
name=surihttp://localhost/resources/organization/Random_House/uri/binding
   binding 
name=purihttp://dbpedia.org/ontology/numberOfEmployees/uri/binding
   binding name=oliteral 
datatype=http://www.w3.org/2001/XMLSchema#integer;5712/literal/bindingVirtuoso 
22023 Error SR544: Function __xsd_type() can not find XML Schema 
datatype that matches SQL datatype UNAME (217)


SPARQL query:
select ?s ?p ?o (DATATYPE(?o)) as ?otype (LANG(?o)) as ?olang
  where
  {
{
  select distinct ?s from 
http://localhost/datasets/organizations/import

  where
  {
?s a ?type.
  }
  limit 50
  offset 0
}

?s ?p ?o
  }
==


Obviously, the error is related to the datatype request. However, I am 
not sure why it chokes there, and in that way. If I request the 
text/html mime, it works fine.


Is it just that something is missing in the 6.1.6 database that is now 
required by 6.1.8 related to these datatypes? If so, is this something I 
can create by hands?



Thanks,

Take care,

Fred
--
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991iu=/4140/ostg.clktrk___
Virtuoso-users mailing list
Virtuoso-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/virtuoso-users


Re: [Virtuoso-users] Possible compatibility between 6.1.16 and 6.1.8?

2014-01-30 Thread Hugh Williams
Hi Fred,

This looks like a general bug in the latest builds, as I get the same error 
running the following similar query against our v7 LOD Cloud server, 
http://lod.openlinksw.com/sparql:

select ?s ?p ?o (DATATYPE(?o)) as ?otype (LANG(?o)) as ?olang
where 
{
  {
select distinct ?s  
where 
{
  ?s a ?type.
} 
limit 50 
offset 0
  } 
  
  ?s ?p ?o
}

and have reported this to development to look into ...

Best Regards
Hugh Williams
Professional Services
OpenLink Software, Inc.  //  http://www.openlinksw.com/
Weblog   -- http://www.openlinksw.com/blogs/
LinkedIn -- http://www.linkedin.com/company/openlink-software/
Twitter  -- http://twitter.com/OpenLink
Google+  -- http://plus.google.com/100570109519069333827/
Facebook -- http://www.facebook.com/OpenLinkSoftware
Universal Data Access, Integration, and Management Technology Providers

On 30 Jan 2014, at 18:23, Frederick Giasson f...@fgiasson.com wrote:

 Hi,
 
 I am wondering if I found a compability issue between VOS 6.1.6 and 6.1.8.
 
 I did compile VOS 6.1.8 without any issues, then I ran with with a VOS 6.1.6 
 database file. There was no issues, and everything was working as expected, 
 until I use the following SPARQL query:
 
 
 ==
 select ?s ?p ?o (DATATYPE(?o)) as ?otype (LANG(?o)) as ?olang
 where 
 {
   {
 select distinct ?s from http://localhost/datasets/organizations/import 
 where 
 {
   ?s a ?type.
 } 
 limit 50 
 offset 0
   } 
   
   ?s ?p ?o
 }
 ==
 
 If I am requesting the following mimes to the /sparql/ endpoint:
 
   (a) application/sparql-results+xml
   (b) application/sparql-results+json
 
 I am getting the following content from the endpoint:
 
 
 ==
 sparql xmlns=http://www.w3.org/2005/sparql-results#; 
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
 xsi:schemaLocation=http://www.w3.org/2001/sw/DataAccess/rf1/result2.xsd;
  head
   variable name=s/
   variable name=p/
   variable name=o/
   variable name=otype/
   variable name=olang/
  /head
  results distinct=false ordered=true
   result
binding 
 name=surihttp://localhost/resources/organization/Random_House/uri/binding
binding 
 name=purihttp://www.w3.org/1999/02/22-rdf-syntax-ns#type/uri/binding
binding 
 name=ourihttp://dbpedia.org/ontology/Publisher/uri/binding
   /result
   result
binding 
 name=surihttp://localhost/resources/organization/Random_House/uri/binding
binding 
 name=purihttp://www.w3.org/1999/02/22-rdf-syntax-ns#type/uri/binding
binding 
 name=ourihttp://www.w3.org/ns/org#Organization/uri/binding
   /result
   result
binding 
 name=surihttp://localhost/resources/organization/Random_House/uri/binding
binding name=purihttp://xmlns.com/foaf/0.1/homepage/uri/binding
binding name=ourihttp://www.randomhouse.com/uri/binding
   /result
   result
binding 
 name=surihttp://localhost/resources/organization/Random_House/uri/binding
binding 
 name=purihttp://dbpedia.org/ontology/numberOfEmployees/uri/binding
binding name=oliteral 
 datatype=http://www.w3.org/2001/XMLSchema#integer;5712/literal/bindingVirtuoso
  22023 Error SR544: Function __xsd_type() can not find XML Schema datatype 
 that matches SQL datatype UNAME (217)
 
 SPARQL query:
 select ?s ?p ?o (DATATYPE(?o)) as ?otype (LANG(?o)) as ?olang
   where 
   {
 {
   select distinct ?s from 
 http://localhost/datasets/organizations/import 
   where 
   {
 ?s a ?type.
   } 
   limit 50 
   offset 0
 } 
 
 ?s ?p ?o
   }
 ==
 
 
 Obviously, the error is related to the datatype request. However, I am not 
 sure why it chokes there, and in that way. If I request the text/html mime, 
 it works fine.
 
 Is it just that something is missing in the 6.1.6 database that is now 
 required by 6.1.8 related to these datatypes? If so, is this something I can 
 create by hands?
 
 
 Thanks,
 
 Take care,
 
 Fred
 --
 WatchGuard Dimension instantly turns raw network data into actionable 
 security intelligence. It gives you real-time visual feedback on key
 security issues and trends.  Skip the complicated setup - simply import
 a virtual appliance and go from zero to informed in seconds.
 http://pubads.g.doubleclick.net/gampad/clk?id=123612991iu=/4140/ostg.clktrk___
 Virtuoso-users mailing list
 Virtuoso-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/virtuoso-users

--
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.