This HTML5 document contains 41 embedded RDF statements represented using HTML+Microdata notation.

The embedded RDF content will be recognized by any processor of HTML5 Microdata.

PrefixNamespace IRI
dctermshttp://purl.org/dc/terms/
atomhttp://atomowl.org/ontologies/atomrdf#
n16https://demo.openlinksw.com/
foafhttp://xmlns.com/foaf/0.1/
n7http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n4http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
n21https://foaf.me/simpleLogin.
dchttp://purl.org/dc/elements/1.1/
n18http://test.foafssl.org/cert/
n11http://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n8http://rdfs.org/sioc/services#
n14http://vos.openlinksw.com/dataspace/person/dav#
siocthttp://rdfs.org/sioc/types#
n17http://ods.openlinksw.com/wiki/ODS/
n6http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtFOAFSSLCurlExample2/sioc.
n2http://vos.openlinksw.com/dataspace/owiki/wiki/
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n12http://vos.openlinksw.com/dataspace/owiki#
xsdhhttp://www.w3.org/2001/XMLSchema#
n20http://esw.w3.org/topic/foaf+
n23http://vos.openlinksw.com/dataspace/person/owiki#
siochttp://rdfs.org/sioc/ns#
Subject Item
n14:this
foaf:made
n4:VirtFOAFSSLCurlExample2
Subject Item
n11:this
sioc:creator_of
n4:VirtFOAFSSLCurlExample2
Subject Item
n7:item
n8:services_of
n4:VirtFOAFSSLCurlExample2
Subject Item
n12:this
sioc:creator_of
n4:VirtFOAFSSLCurlExample2
Subject Item
n2:VOS
sioc:container_of
n4:VirtFOAFSSLCurlExample2
atom:entry
n4:VirtFOAFSSLCurlExample2
atom:contains
n4:VirtFOAFSSLCurlExample2
Subject Item
n4:VirtFOAFSSLCurlExample2
rdf:type
sioct:Comment atom:Entry
dcterms:created
2017-06-13T05:44:17.354651
dcterms:modified
2017-06-29T07:43:22.428997
rdfs:label
VirtFOAFSSLCurlExample2
foaf:maker
n14:this n23:this
dc:title
VirtFOAFSSLCurlExample2
opl:isDescribedUsing
n6:rdf
sioc:has_creator
n11:this n12:this
sioc:content
---++Example for querying the SPARQL-SSL endpoint using Virtuoso function http_client The following example demonstrates how to query the SPARQL-SSL endpoint (listening on default HTTPS 443 port) using Virtuoso function http_client: 1 Make sure the steps from the [[VirtSPARQLSSL][FOAF+SSL cURL Usage Guide]] are done. 1. Log in at Virtuos ISQL with your user credentials: <verbatim> C:\>isql localhost:1111 johndoe **** Connected to OpenLink Virtuoso Driver: 06.01.3127 OpenLink Virtuoso ODBC Driver OpenLink Interactive SQL (Virtuoso), version 0.9849b. Type HELP; for help and EXIT; to exit. SQL> </verbatim> 1. Execute: <verbatim> SQL>select http_client ('https://localhost/sparql-ssl?query=select+*+where+{+%3Fx+%3Fy+%3Fz+.+}+limit+10&format=text%2Fn3', cert_file=>'d b:cli_key', insecure=>1); callret VARCHAR _______________________________________________________________________________ @prefix res: <http://www.w3.org/2005/sparql-results#> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . _:_ a res:ResultSet . _:_ res:resultVariable "x" , "y" , "z" . @prefix ns0: <https://localhost/tutorial/> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . _:_ res:solution [ res:binding [ res:variable "x" ; res:value ns0:hosting ] ; res:binding [ res:variable "y" ; res:value rdf:type ] ; res:binding [ res:variable "z" ; res:value "Tutorial" ] ] . _:_ res:solution [ res:binding [ res:variable "x" ; res:value ns0:xml ] ; res:binding [ res:variable "y" ; res:value rdf:type ] ; res:binding [ res:variable "z" ; res:value "Tutorial" ] ] . _:_ res:solution [ res:binding [ res:variable "x" ; res:value ns0:repl ] ; res:binding [ res:variable "y" ; res:value rdf:type ] ; res:binding [ res:variable "z" ; res:value "Tutorial" ] ] . _:_ res:solution [ res:binding [ res:variable "x" ; res:value ns0:rdfview ] ; res:binding [ res:variable "y" ; res:value rdf:type ] ; res:binding [ res:variable "z" ; res:value "Tutorial" ] ] . _:_ res:solution [ res:binding [ res:variable "x" ; res:value ns0:services ] ; res:binding [ res:variable "y" ; res:value rdf:type ] ; res:binding [ res:variable "z" ; res:value "Tutorial" ] ] . _:_ res:solution [ res:binding [ res:variable "x" ; res:value ns0:wap ] ; res:binding [ res:variable "y" ; res:value rdf:type ] ; res:binding [ res:variable "z" ; res:value "Tutorial" ] ] . _:_ res:solution [ res:binding [ res:variable "x" ; res:value ns0:bpeldemo ] ; res:binding [ res:variable "y" ; res:value rdf:type ] ; res:binding [ res:variable "z" ; res:value "Tutorial" ] ] . _:_ res:solution [ res:binding [ res:variable "x" ; res:value ns0:web ] ; res:binding [ res:variable "y" ; res:value rdf:type ] ; res:binding [ res:variable "z" ; res:value "Tutorial" ] ] . _:_ res:solution [ 1 Rows. -- 281 msec. SQL> </verbatim> ---++Related * [[VirtFOAFSSLCurlExample1][Example for querying the SPARQL-SSL endpoint using cURL]] * [[VirtAuthServerUI][Set FOAF+SSL ACLs using the Virtuoso Authentication Server UI]] * [[VirtAuthFOAFSSLACL][FOAF+SSL ACLs Tutorial]] * [[VirtOAuthSPARQL][SPARQL OAuth Tutorial]] * [[http://ods.openlinksw.com/wiki/ODS/VirtODSFOAFSSL][FOAF+SSL Support in OpenLink Data Spaces]] * [[http://ods.openlinksw.com/wiki/ODS/ODSPkiSetup][Guide to Setting up a X.509 certificate issuer and HTTPS listener and Generating ODS user certificates]] * [[http://ods.openlinksw.com/wiki/ODS/OdsKeyImport][CA Keys Import using Conductor]] * [[http://ods.openlinksw.com/wiki/ODS/ODSBriefcaseFOAFSSLODSCert][Generate an X.509 Certificate hosted WebID Guide]] * [[http://ods.openlinksw.com/wiki/ODS/ODSBriefcaseFOAFSSLShareFile][ODS Briefcase FOAF+SSL Share File Guide]] * [[http://esw.w3.org/topic/foaf+ssl][FOAF+SSL Specification]] * [[https://foaf.me/simpleLogin.php][Test FOAF+SSL Certificate page]] * [[http://test.foafssl.org/cert/][FOAF+SSL Certificate Generation page]] * [[https://demo.openlinksw.com/sparql-ssl][Virtuoso Demo SPARQL-SSL Endpoint]]
sioc:id
e233462911c3190121a1ae21630d9266
sioc:link
n4:VirtFOAFSSLCurlExample2
sioc:has_container
n2:VOS
n8:has_services
n7:item
atom:title
VirtFOAFSSLCurlExample2
sioc:links_to
n4:VirtFOAFSSLCurlExample1 n16:sparql-ssl n17:ODSPkiSetup n4:VirtAuthFOAFSSLACL n17:VirtODSFOAFSSL n18: n20:ssl n17:ODSBriefcaseFOAFSSLODSCert n21:php n17:ODSBriefcaseFOAFSSLShareFile n17:OdsKeyImport n4:VirtAuthServerUI
atom:source
n2:VOS
atom:author
n14:this
atom:published
2017-06-13T05:44:17Z
atom:updated
2017-06-29T07:43:22Z
sioc:topic
n2:VOS