This HTML5 document contains 97 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/
n26http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtTipsAndTricksGuideSPARQLEndpoints/sioc.
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
n13http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n2http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
n24https://foaf.me/simpleLogin.
n15http://docs.openlinksw.com/virtuoso/rdfsparql.
dchttp://purl.org/dc/elements/1.1/
n16http://docs.openlinksw.com/virtuoso/
n22http://test.foafssl.org/cert/
n8http://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n12http://rdfs.org/sioc/services#
n7http://docs.openlinksw.com/virtuoso/rdfsparql.html#
n20http://vos.openlinksw.com/dataspace/person/dav#
siocthttp://rdfs.org/sioc/types#
n14http://ods.openlinksw.com/wiki/ODS/
n5http://vos.openlinksw.com/dataspace/owiki/wiki/
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n17http://vos.openlinksw.com/dataspace/owiki#
xsdhhttp://www.w3.org/2001/XMLSchema#
n6http://vos.openlinksw.com/dataspace/%28NULL%29/wiki/VOS/
n19http://vos.openlinksw.com/dataspace/person/owiki#
n23http://esw.w3.org/topic/foaf+
siochttp://rdfs.org/sioc/ns#
Subject Item
n20:this
foaf:made
n2:VirtTipsAndTricksGuideSPARQLEndpoints
Subject Item
n8:this
sioc:creator_of
n2:VirtTipsAndTricksGuideSPARQLEndpoints
Subject Item
n13:item
n12:services_of
n2:VirtTipsAndTricksGuideSPARQLEndpoints
Subject Item
n17:this
sioc:creator_of
n2:VirtTipsAndTricksGuideSPARQLEndpoints
Subject Item
n5:VOS
sioc:container_of
n2:VirtTipsAndTricksGuideSPARQLEndpoints
atom:entry
n2:VirtTipsAndTricksGuideSPARQLEndpoints
atom:contains
n2:VirtTipsAndTricksGuideSPARQLEndpoints
Subject Item
n2:VirtEBSBackedBYOLAMI
sioc:links_to
n2:VirtTipsAndTricksGuideSPARQLEndpoints
Subject Item
n2:VirtWebIDCurlExample1
sioc:links_to
n2:VirtTipsAndTricksGuideSPARQLEndpoints
Subject Item
n2:VirtTipsAndTricksGuideSPARQLEndpoints
rdf:type
sioct:Comment atom:Entry
dcterms:created
2017-06-13T05:36:26.985653
dcterms:modified
2017-06-29T07:41:36.270108
rdfs:label
VirtTipsAndTricksGuideSPARQLEndpoints
foaf:maker
n19:this n20:this
dc:title
VirtTipsAndTricksGuideSPARQLEndpoints
opl:isDescribedUsing
n26:rdf
sioc:has_creator
n8:this n17:this
sioc:content
%META:TOPICPARENT{name="VirtTipsAndTricksGuide"}% ---+ Securing SPARQL endpoints SPARQL endpoints are Web services, and they are capable of more than providing Read-Only access to a back-end graph DBMS. Though commonly general-purpose, SPARQL endpoints can also be purpose-specific, and their privileges may therefore be limited to specific Create, Read, Update, and/or Delete operations. The privileges provided by a given Virtuoso SPARQL endpoint may be based simply upon the endpoint's URL, or upon sophisticated rules which associate specific user identities with specific database roles and privileges. Virtuoso offers three methods for securing SPARQL endpoints: * <b>[[VirtSPARQLProtectSQLDigestAuthentication][Digest Authentication via SQL Accounts]]</b> * <b>[[VirtOAuthSPARQL][OAuth Protocol based Authentication]]</b> * <b>[[VirtSPARQLSecurityWebID][WebID Protocol based authentication]]</b> By default, Virtuoso has several purpose-specific SPARQL endpoints, associated with these authentication methods along the following lines -- | *Endpoint* | *Endpoint URL Convention* | *More information...* | *Notes* | | <b>Basic default</b> | <code><nowiki>http://&lt;cname>[:&lt;port>]/sparql</nowiki></code> | Virtuoso [[http://docs.openlinksw.com/virtuoso/rdfsparql.html#rdfsupportedprotocolendpoint][SPARQL Web Service Endpoint]] documentation. | | | <b>SPARQL Digest %BR%(Digest Authentication via SQL Accounts)</b> | <code><nowiki>http://&lt;cname>[:&lt;port>]/sparql-auth</nowiki></code> | [[http://docs.openlinksw.com/virtuoso/rdfsparql.html#rdfsupportedprotocolendpointurisparqlauthex][Demonstration of setting user privileges to interact with OAuth Protected SPARQL Endpoint]] | | | <b>SPARQL OAuth</b> | <code><nowiki>http://&lt;cname>[:&lt;port>]/sparql-oauth</nowiki></code> | [[VirtOAuthSPARQL][Demonstration of the OAuth keys and Protected SPARQL Endpoint features of the Virtuoso OAuth UI]] | | | <b>SPARQL WebID</b> | <code><nowiki>https://&lt;cname>[:&lt;port>]/sparql</nowiki></code> %BR% and %BR% <code><nowiki>https://&lt;cname>[:&lt;port>]/sparql-webid</nowiki></code> | [[VirtSPARQLSecurityWebID][Demonstration of setting WebID Protocol ACLs using the Virtuoso Authentication Server UI]] | | | <b>SPARQL Graph Store Protocol</b> | <code><nowiki>http://&lt;cname>[:&lt;port>]/sparql-graph-crud</nowiki></code> | Virtuoso [[http://docs.openlinksw.com/virtuoso/rdfsparql.html#sparqloauthendpointauth][SPARQL Authentication]] documentation. | Primarily intended to serve requests from applications, rather than human interactions via browser. | | <b>Digest Authentication</b> | <code><nowiki>http://&lt;cname>[:&lt;port>]/sparql-graph-crud-auth</nowiki></code> | Virtuoso [[http://docs.openlinksw.com/virtuoso/rdfsparql.html#sparqloauthendpointauth][SPARQL Authentication]] documentation. | Primarily intended to serve requests from applications, rather than human interactions via browser. | We also have step-by-step guides to walk you through the process of setting up your own SPARQL endpoint(s) for -- * [[VirtReadOnlySPARQL][read-only access]] * [[VirtSPARQLProtectSQLDigestAuthentication][read-write access using digest authentication]] * [[VirtOAuthSPARQL][read-write access using OAuth]] * [[VirtSPARQLSecurityWebID][read-write access using SSL via WebID]] ---++Related * [[VirtSPARQLEndpointProtection][Safeguarding your Virtuoso-hosted SPARQL Endpoint]] * [[VirtTipsAndTricksGuideSPARQLEndpointProtection][SPARQL Endpoint Protection Methods Collection]] * [[http://docs.openlinksw.com/virtuoso/][Virtuoso documentation]] * [[http://docs.openlinksw.com/virtuoso/rdfsparql.html#rdfsupportedprotocolendpoint][SPARQL Service Endpoint]] * [[http://docs.openlinksw.com/virtuoso/rdfsparql.html#rdfsupportedprotocolendpointuri][Service Endpoint Security]] * [[http://docs.openlinksw.com/virtuoso/rdfsparql.html#sparqwebservicetbl][Managing a SPARQL Web Service Endpoint]] * [[http://docs.openlinksw.com/virtuoso/rdfsparql.html][SPARQL]] * [[VirtTipsAndTricksGuide][Virtuoso Tips and Tricks Collection]] * [[VirtSPARQLDET][SPARQL Endpoint DET Configuration Guide]] * [[VirtSPARQLSecurityWebID][WebID Protocol & SPARQL Endpoint ACLs Tutorial]] * [[VirtOAuthSPARQL][SPARQL OAuth Tutorial]] * [[http://ods.openlinksw.com/wiki/ODS/OdsSPARQLAuth][SPARUL over SPARQL using the http://cname:port/sparql-auth endpoint]] * [[VirtAuthServerUI][Virtuoso Authentication Server UI]] * [[VirtSPARQLSSL][Manage a SPARQL-WebID based Endpoint]] * [[VirtSetupSSL][Configure Virtuoso instance as an X.509 Certificate Authority and HTTPS listener]] * [[http://ods.openlinksw.com/wiki/ODS/ODSSetupSSL][Configure Virtuoso+ODS instance as an X.509 Certificate Authority and HTTPS listener]] * [[http://ods.openlinksw.com/wiki/ODS/VirtODSSecurityWebID][WebID Protocol Support in OpenLink Data Spaces]]. * Manage ODS Datadspaces Objects WebID Access Control Lists (ACLs): * [[http://ods.openlinksw.com/wiki/ODS/ODSBriefcaseWebID][ODS Briefcase WebID based ACL Guide]] * [[http://ods.openlinksw.com/wiki/ODS/ODSBriefcaseWebIDPerson][Person Entity WebID based ACL Guide]] * [[http://ods.openlinksw.com/wiki/ODS/ODSBriefcaseWebIDGroup][Group Entity WebID based ACL Guide]] * [[http://ods.openlinksw.com/wiki/ODS/ODSBriefcaseWebIDPublic][Public WebID based ACL Guide]] * [[http://ods.openlinksw.com/wiki/ODS/ODSFeedManagerWebIDACL][ODS Feed Manager WebID based ACL Guide]] * [[http://ods.openlinksw.com/wiki/ODS/ODSFeedManagerWebIDACLPerson][Person Entity Specific ACL]] * [[http://ods.openlinksw.com/wiki/ODS/ODSFeedManagerWebIDACLGroup][Group Entity Specific ACL]] * [[http://ods.openlinksw.com/wiki/ODS/ODSFeedManagerWebIDACLPublic][Public Specific ACL for anyone with a WebID]] * [[http://ods.openlinksw.com/wiki/ODS/ODSCalendarWebIDACL][ODS Calendar WebID based ACL Guide]] * [[http://ods.openlinksw.com/wiki/ODS/ODSCalendarWebIDACLPerson][Person Entity Specific ACL]] * [[http://ods.openlinksw.com/wiki/ODS/ODSCalendarWebIDACLGroup][Group Entity Specific ACL]] * [[http://ods.openlinksw.com/wiki/ODS/ODSCalendarWebIDACLPublic][Public Specific ACL for anyone with a WebID]] * [[http://ods.openlinksw.com/wiki/ODS/ODSBookmarksWebIDACL][ODS Bookmark Manager WebID based ACL Guide]] * [[http://ods.openlinksw.com/wiki/ODS/ODSBookmarksWebIDACLPerson][Person Entity Specific ACL]] * [[http://ods.openlinksw.com/wiki/ODS/ODSBookmarksWebIDACLGroup][Group Entity Specific ACL]] * [[http://ods.openlinksw.com/wiki/ODS/ODSBookmarksWebIDACLPublic][Public Specific ACL for anyone with a WebID]] * [[http://ods.openlinksw.com/wiki/ODS/ODSAddressBookWebIDACL][ODS Addressbook WebID based ACL Guide]] * [[http://ods.openlinksw.com/wiki/ODS/ODSAddressBookWebIDACLPerson][Person Entity Specific ACL]] * [[http://ods.openlinksw.com/wiki/ODS/ODSAddressBookWebIDACLGroup][Group Entity Specific ACL]] * [[http://ods.openlinksw.com/wiki/ODS/ODSAddressBookWebIDACLPublic][Public Specific ACL for anyone with a WebID]] * [[http://ods.openlinksw.com/wiki/ODS/ODSPkiSetup][Guide for Set up a X.509 certificate issuer and HTTPS listener and generate ODS user certificates.]] * [[http://ods.openlinksw.com/wiki/ODS/VirtODSPubSubHub][Setting up PubSubHub in ODS]] * [[http://ods.openlinksw.com/wiki/ODS/VirtPubSubHub][PubSubHubBub Demo Client Example]] * [[http://ods.openlinksw.com/wiki/ODS/VirtFeedPubSubHub][Feed subscription via PubSubHub protocol Example ]] * [[http://ods.openlinksw.com/wiki/ODS/VirtPubSubHubACL][Setting Up PubSubHub to use WebID Protocol or IP based control lists]] * [[http://ods.openlinksw.com/wiki/ODS/OdsKeyImport][CA Keys Import using Conductor]] * [[http://ods.openlinksw.com/wiki/ODS/ODSGenerateX509Certificate][Generate an X.509 Certificate hosted WebID Guide]] * [[http://ods.openlinksw.com/wiki/ODS/ODSGenerateWebIDX509CertOSKeystore][Generate an X.509 Certificate (with a WebID watermark) to be managed by host operating system keystore]] * [[http://ods.openlinksw.com/wiki/ODS/ODSGenerateWebIDX509CertBrsKeystore][Generate an X.509 Certificate (with a WebID watermark) to be managed by a browser-based keystore]] * [[http://ods.openlinksw.com/wiki/ODS/ODSWebIDIdP][Using Virtuoso's WebID Verification Proxy Service with a WebID-bearing X.509 certificate]] * [[http://ods.openlinksw.com/wiki/ODS/ODSWebIDIdpProxy][Using Virtuoso's WebID Identity Provider (IdP) Proxy Service with an X.509 certificate]] * [[http://ods.openlinksw.com/wiki/ODS/ODSBriefcaseWebIDShareFile][ODS Briefcase WebID Protocol Share File Guide]] * [[http://esw.w3.org/topic/foaf+ssl][WebID Protocol Specification]] * [[https://foaf.me/simpleLogin.php][Test WebID Protocol Certificate page]] * [[http://test.foafssl.org/cert/][WebID Protocol Certificate Generation page]] CategoryVirtuoso CategoryHowTo CategorySPARQL CategoryOAuth CategoryFOAFSSL CategoryDocumentation CategoryTutorial
sioc:id
49ea3631abb254244e69bd4541e38dac
sioc:link
n2:VirtTipsAndTricksGuideSPARQLEndpoints
sioc:has_container
n5:VOS
n12:has_services
n13:item
atom:title
VirtTipsAndTricksGuideSPARQLEndpoints
sioc:links_to
n2:CategoryHowTo n6:VirtReadOnlySPARQL n7:rdfsupportedprotocolendpointurisparqlauthex n2:VirtSPARQLProtectSQLDigestAuthentication n14:ODSSetupSSL n14:VirtODSSecurityWebID n15:html n14:OdsSPARQLAuth n7:rdfsupportedprotocolendpointuri n7:sparqwebservicetbl n16: n7:rdfsupportedprotocolendpoint n14:ODSFeedManagerWebIDACLGroup n14:ODSFeedManagerWebIDACLPublic n14:ODSFeedManagerWebIDACL n14:ODSFeedManagerWebIDACLPerson n7:sparqloauthendpointauth n14:ODSBriefcaseWebIDGroup n2:VirtSPARQLDET n14:ODSBriefcaseWebIDPublic n14:ODSBriefcaseWebID n14:ODSBriefcaseWebIDPerson n6:WebID n2:CategoryOAuth n2:VirtAuthServerUI n2:CategorySPARQL n2:CategoryFOAFSSL n14:ODSWebIDIdpProxy n14:ODSBriefcaseWebIDShareFile n14:ODSGenerateWebIDX509CertBrsKeystore n14:ODSWebIDIdP n14:ODSGenerateX509Certificate n14:ODSGenerateWebIDX509CertOSKeystore n14:VirtPubSubHubACL n14:OdsKeyImport n2:VirtSPARQLEndpointProtection n22: n23:ssl n24:php n14:ODSBookmarksWebIDACLGroup n14:ODSBookmarksWebIDACLPublic n14:ODSBookmarksWebIDACL n14:ODSBookmarksWebIDACLPerson n14:ODSCalendarWebIDACLGroup n14:ODSCalendarWebIDACLPublic n14:ODSCalendarWebIDACL n2:VirtSetupSSL n14:ODSCalendarWebIDACLPerson n14:VirtPubSubHub n14:VirtFeedPubSubHub n14:ODSPkiSetup n14:VirtODSPubSubHub n14:ODSAddressBookWebIDACLGroup n14:ODSAddressBookWebIDACLPublic n14:ODSAddressBookWebIDACL n14:ODSAddressBookWebIDACLPerson n2:CategoryVirtuoso n2:CategoryDocumentation n2:CategoryTutorial n2:VirtTipsAndTricksGuideSPARQLEndpointProtection
atom:source
n5:VOS
atom:author
n20:this
atom:published
2017-06-13T05:36:26Z
atom:updated
2017-06-29T07:41:36Z
sioc:topic
n5:VOS
Subject Item
n2:VirtSetupSSLVirtuoso
sioc:links_to
n2:VirtTipsAndTricksGuideSPARQLEndpoints
Subject Item
n2:VirtWebIDCurlExample2
sioc:links_to
n2:VirtTipsAndTricksGuideSPARQLEndpoints
Subject Item
n2:VirtOAuthSPARQL
sioc:links_to
n2:VirtTipsAndTricksGuideSPARQLEndpoints
Subject Item
n2:VirtTipsAndTricksLDAPWebID
sioc:links_to
n2:VirtTipsAndTricksGuideSPARQLEndpoints
Subject Item
n2:VirtDBpediaSnapshotPagoAmi
sioc:links_to
n2:VirtTipsAndTricksGuideSPARQLEndpoints
Subject Item
n2:VirtPayAsYouGoEBSBackedAMIDBpedia2015
sioc:links_to
n2:VirtTipsAndTricksGuideSPARQLEndpoints