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#
foafhttp://xmlns.com/foaf/0.1/
n4https://demo.openlinksw.com/
n17http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n2http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
n10https://foaf.me/simpleLogin.
dchttp://purl.org/dc/elements/1.1/
n6http://test.foafssl.org/cert/
n5http://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n16http://rdfs.org/sioc/services#
siocthttp://rdfs.org/sioc/types#
n9http://vos.openlinksw.com/dataspace/person/dav#
n12http://ods.openlinksw.com/wiki/ODS/
n18http://vos.openlinksw.com/dataspace/owiki/wiki/
n22http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtFOAFSSLCurlExample1/sioc.
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n20http://vos.openlinksw.com/dataspace/owiki#
xsdhhttp://www.w3.org/2001/XMLSchema#
n7http://esw.w3.org/topic/foaf+
n23http://vos.openlinksw.com/dataspace/person/owiki#
siochttp://rdfs.org/sioc/ns#
Subject Item
n9:this
foaf:made
n2:VirtFOAFSSLCurlExample1
Subject Item
n5:this
sioc:creator_of
n2:VirtFOAFSSLCurlExample1
Subject Item
n17:item
n16:services_of
n2:VirtFOAFSSLCurlExample1
Subject Item
n20:this
sioc:creator_of
n2:VirtFOAFSSLCurlExample1
Subject Item
n18:VOS
sioc:container_of
n2:VirtFOAFSSLCurlExample1
atom:entry
n2:VirtFOAFSSLCurlExample1
atom:contains
n2:VirtFOAFSSLCurlExample1
Subject Item
n2:VirtFOAFSSLCurlExample1
rdf:type
sioct:Comment atom:Entry
dcterms:created
2017-06-13T05:48:52.318531
dcterms:modified
2017-06-29T07:43:22.293271
rdfs:label
VirtFOAFSSLCurlExample1
foaf:maker
n23:this n9:this
dc:title
VirtFOAFSSLCurlExample1
opl:isDescribedUsing
n22:rdf
sioc:has_creator
n5:this n20:this
sioc:content
---+++Example for querying the SPARQL-SSL endpoint using cURL The following example demonstrates how to query from the SPARQL-SSL endpoint (listening on default HTTPS 443 port) using cURL: 1 Make sure the steps from the [[VirtSPARQLSSL][FOAF+SSL cURL Usage Guide]] are done. 1 Execute: <verbatim> curl -k -E mykey.pem "https://localhost/sparql-ssl?query=select+*+where+\{+%3Fx+%3Fy+%3Fz+.+\}+limit+10&format=text%2Fn3" @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 [ res:binding [ res:variable "x" ; res:value ns0:web2 ] ; 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:xmlxslt ] ; res:binding [ res:variable "y" ; res:value rdf:type ] ; res:binding [ res:variable "z" ; res:value "Tutorial" ] ] . </verbatim> ---++Related * [[VirtFOAFSSLCurlExample2][Example for querying the SPARQL-SSL endpoint using Virtuoso function http_client]] * [[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
04ffece5179208a8533f4ddf2dbc1696
sioc:link
n2:VirtFOAFSSLCurlExample1
sioc:has_container
n18:VOS
n16:has_services
n17:item
atom:title
VirtFOAFSSLCurlExample1
sioc:links_to
n4:sparql-ssl n6: n7:ssl n10:php n12:ODSPkiSetup n12:VirtODSFOAFSSL n12:ODSBriefcaseFOAFSSLODSCert n12:ODSBriefcaseFOAFSSLShareFile n2:VirtAuthFOAFSSLACL n2:VirtAuthServerUI n12:OdsKeyImport
atom:source
n18:VOS
atom:author
n9:this
atom:published
2017-06-13T05:48:52Z
atom:updated
2017-06-29T07:43:22Z
sioc:topic
n18:VOS
Subject Item
n2:VirtFOAFSSLCurlExample2
sioc:links_to
n2:VirtFOAFSSLCurlExample1