Not logged in : Login

About: OdsAddressbookCRUDEndpoint     Goto   Sponge   NotDistinct   Permalink

An Entity of Type : atom:Entry, within Data Space : ods.openlinksw.com associated with source document(s)

AttributesValues
type
Date Created
Date Modified
label
  • OdsAddressbookCRUDEndpoint
maker
Title
  • OdsAddressbookCRUDEndpoint
isDescribedUsing
has creator
attachment
  • http://ods.openlinksw.com/wiki/main/ODS/OdsAddressbookCRUDEndpoint/abcrud1.png
  • http://ods.openlinksw.com/wiki/main/ODS/OdsAddressbookCRUDEndpoint/abcrud10.png
  • http://ods.openlinksw.com/wiki/main/ODS/OdsAddressbookCRUDEndpoint/abcrud12.png
  • http://ods.openlinksw.com/wiki/main/ODS/OdsAddressbookCRUDEndpoint/abcrud13.png
  • http://ods.openlinksw.com/wiki/main/ODS/OdsAddressbookCRUDEndpoint/abcrud14.png
  • http://ods.openlinksw.com/wiki/main/ODS/OdsAddressbookCRUDEndpoint/abcrud15.png
  • http://ods.openlinksw.com/wiki/main/ODS/OdsAddressbookCRUDEndpoint/abcrud2.png
  • http://ods.openlinksw.com/wiki/main/ODS/OdsAddressbookCRUDEndpoint/abcrud3.png
  • http://ods.openlinksw.com/wiki/main/ODS/OdsAddressbookCRUDEndpoint/abcrud4.png
  • http://ods.openlinksw.com/wiki/main/ODS/OdsAddressbookCRUDEndpoint/abcrud5.png
  • http://ods.openlinksw.com/wiki/main/ODS/OdsAddressbookCRUDEndpoint/abcrud6.png
  • http://ods.openlinksw.com/wiki/main/ODS/OdsAddressbookCRUDEndpoint/abcrud7.png
  • http://ods.openlinksw.com/wiki/main/ODS/OdsAddressbookCRUDEndpoint/abcrud8.png
  • http://ods.openlinksw.com/wiki/main/ODS/OdsAddressbookCRUDEndpoint/abcrud9.png
content
  • %META:TOPICPARENT{name="OdsAddressbook"}% ---+Manipulate my Addressbook data via CRUD RESTful using Addressbook CardDAV Endpoint %TOC% ---++What? AddressBook CRUD (Create, Read, Update, Delete) Endpoint Service. ---++Why? Using CRUD RESTful Endpoint service provides an easy way to manage contacts. ---++How? Knowing an Addressbook CRUD Endpoint Service endpoint URL, one can perform the following activities: * Copy-paste vCard files containing contacts. So once pasted, the system creates the contacts; * Edit contact(s); * Update contact(s); * Delete contact(s); * Update RDF Data for the Addressbook instance. Depending on the instance's model: * When model is "Closed", will be updated the RDF Data for the instance's private graph: http://cname/dataspace/protected/[name-of-the-instance] * When model is "Opened", will be updated the RDF Data for the ODS Dataspace public graph: http://cname/dataspace/[name-of-the-instance] ---+++Example with Addressbook instance that has Member model from type "Closed" and is not set "Visible to public" 1. Suppose a user, for ex. "demo", has created Addressbook instance with name "demoAddressBook" and Member model is "Closed": %BR%%BR%%BR%%BR% 1 Mount the Addressbook CardDAV Endpoint URL http://localhost:8890/DAV/home/demo/addressbooks/demoAddressBook/ %BR%%BR%%BR%%BR% %BR%%BR%%BR%%BR% %BR%%BR%%BR%%BR% 1 Drop a .vcf file, for ex. kidehen.vcf into the mapped CardDAV Addressbook folder: -- kidehen.vcf BEGIN:VCARD VERSION:3.0 REV:2012-01-23T15:30:04-05:00 UID:B12074BC-DB7B-47F5-856E-2DBD08923381-ABSPlugin NICKNAME:Idehen FN:Kingsley Idehen N:Idehen;Kingsley;; ORG:OpenLink Software TITLE:CEO END:VCARD %BR%%BR%%BR%%BR% 1 The user demo's Addressbook Dataspace instance UI now should show under "My Contacts" the new imported contact(s): %BR%%BR%%BR%%BR% 1 [[http://ods.openlinksw.com/dataspace/dav/wiki/ODS/ODSGenerateX509Certificate][Generate an X.509 Certificate hosted WebID]] for user "demo" WebID. 1 [[http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/VirtAuthFOAFSSLACL][Secure your SPARQL Endpoint via user "demo" WebID]], for ex.: -- user "demo" WebID: http://localhost:8890/dataspace/person/demo#this -- SPARQL-WebID Endpoint: -- https://localhost:4433/sparql-webid 1 Access the SPARQL-WebID Endpoint. 1 When challenged for authentication select the generated from above certificate for user "demo": %BR%%BR%%BR%%BR% 1 The SPARQL-WebID Endpoint UI should be presented: %BR%%BR%%BR%%BR% 1 Enter the following query: SELECT * FROM WHERE {?s ?p ?o} %BR%%BR%%BR%%BR% 1 As result no rows are found. ---+++Example with Addressbook instance that has Member model from type "Opened" and is set "Visible to Public" 1. Suppose a user, for ex. "demo", has created Addressbook instance with name "demoAddressBook" and Member model is "Opened" and is set "Visible to Public". %BR%%BR%%BR%%BR% 1 Mount the Addressbook CardDAV Endpoint URL http://localhost:8890/DAV/home/demo/addressbooks/demoAddressBook/ %BR%%BR%%BR%%BR% %BR%%BR%%BR%%BR% %BR%%BR%%BR%%BR% 1 Drop a .vcf file, for ex. kidehen.vcf into the mapped CardDAV Addressbook folder: -- kidehen.vcf BEGIN:VCARD VERSION:3.0 REV:2012-01-23T15:30:04-05:00 UID:B12074BC-DB7B-47F5-856E-2DBD08923381-ABSPlugin NICKNAME:Idehen FN:Kingsley Idehen N:Idehen;Kingsley;; ORG:OpenLink Software TITLE:CEO END:VCARD %BR%%BR%%BR%%BR% 1 The user demo's Addressbook Dataspace instance UI now should show under "My Contacts" the new imported contact(s): %BR%%BR%%BR%%BR% 1 Access the SPARQL Public Endpoint. %BR%%BR%%BR%%BR% 1 Suppose the inserted from above contact has id=1004. 1 Enter the following query: SELECT * FROM WHERE { ?p ?o} %BR%%BR%%BR%%BR% 1 Click "Run Query". 1 As result the freshly inserted RDF Data for the contact in question will be displayed: %BR%%BR%%BR%%BR% ---++Related * [[http://ietfreport.isoc.org/idref/draft-ietf-vcarddav-carddav/][CardDAV Specification]] * [[OdsAddressbook][ODS-Addressbook Dataspace]]
id
  • 4e35e38775323f49a75a6f1b1ec9acb2
link
has container
http://rdfs.org/si...ices#has_services
atom:title
  • OdsAddressbookCRUDEndpoint
links to
atom:source
atom:author
atom:published
  • 2017-06-13T06:01:55Z
atom:updated
  • 2017-06-29T07:30:37Z
topic
is made of
is container of of
is link of
is http://rdfs.org/si...vices#services_of of
is creator of of
is atom:entry of
is atom:contains of
Faceted Search & Find service v1.17_git132 as of May 12 2023


Alternative Linked Data Documents: iSPARQL | ODE     Content Formats:   [cxml] [csv]     RDF   [text] [turtle] [ld+json] [rdf+json] [rdf+xml]     ODATA   [atom+xml] [odata+json]     Microdata   [microdata+json] [html]    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 07.20.3238 as of May 23 2023, on Linux (x86_64-generic-linux-glibc25), Single-Server Edition (15 GB total memory, 4 GB memory in use)
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2024 OpenLink Software