如何使用 Virtuoso 创建 SPARQL 端点?
How to create a SPARQL endpoint using Virtuoso?
我刚刚设置了 Virtuoso,并使用以下代码将本地计算机上的 OWL 文件(使用 Protege 软件创建)加载到 Virtuoso:
SQL> DB.DBA.RDF_LOAD_RDFXML_MT (file_to_string_output ('antibiotics.owl'), '', 'http://myexample.com');
现在,我的问题是如何访问 URI myexample.com
?如何在 Virtuoso 中创建 SPARQL 端点以便我可以查询它?
无需创建 sparql 端点,因为它已经存在。
检查您的 Virtuoso 实例 sparql 端点 http://cname:port/sparql (usually: http://localhost:8890/sparql). To do some test queries, use the web interface of Virtuoso (the conductor) http://localhost:8890/conductor 上插入的 RDF 数据,然后转到 'Linked Data' 选项卡。
输入如下查询:
SELECT ?s ?p ?o
FROM <http://myexample.com>
WHERE {?s ?p ?o}
LIMIT 1000
开始。
您也可以通过在 sparql 查询前添加 'SPARQL ' 直接从 vsql 命令行查询。
要直接通过 html 获取特定格式的结果,请获取请求:
http://localhost:8890/sparql?query=(YourQueryUriEncodedWithout())&format=json
有关更详细的答案,请参阅此处的文档:
http://docs.openlinksw.com/virtuoso/rdfsparql.html
兴趣点:
16.2.3.15. SPARQL Endpoint with JSON/P Output Option: Curl Example
16.2.5. SPARQL Inline in SQL
如果您仍然想要自己的端点:
16.2.3.4.6. Creating and Using a SPARQL-WebID based Endpoint
此致...
我刚刚设置了 Virtuoso,并使用以下代码将本地计算机上的 OWL 文件(使用 Protege 软件创建)加载到 Virtuoso:
SQL> DB.DBA.RDF_LOAD_RDFXML_MT (file_to_string_output ('antibiotics.owl'), '', 'http://myexample.com');
现在,我的问题是如何访问 URI myexample.com
?如何在 Virtuoso 中创建 SPARQL 端点以便我可以查询它?
无需创建 sparql 端点,因为它已经存在。 检查您的 Virtuoso 实例 sparql 端点 http://cname:port/sparql (usually: http://localhost:8890/sparql). To do some test queries, use the web interface of Virtuoso (the conductor) http://localhost:8890/conductor 上插入的 RDF 数据,然后转到 'Linked Data' 选项卡。 输入如下查询:
SELECT ?s ?p ?o
FROM <http://myexample.com>
WHERE {?s ?p ?o}
LIMIT 1000
开始。
您也可以通过在 sparql 查询前添加 'SPARQL ' 直接从 vsql 命令行查询。 要直接通过 html 获取特定格式的结果,请获取请求:
http://localhost:8890/sparql?query=(YourQueryUriEncodedWithout())&format=json
有关更详细的答案,请参阅此处的文档: http://docs.openlinksw.com/virtuoso/rdfsparql.html
兴趣点:
16.2.3.15. SPARQL Endpoint with JSON/P Output Option: Curl Example
16.2.5. SPARQL Inline in SQL
如果您仍然想要自己的端点:
16.2.3.4.6. Creating and Using a SPARQL-WebID based Endpoint
此致...