Eric
Miller
W3C Semantic Web Activity Lead
W3C HCLSIG F2F
Cambridge, MA 2006-01-25
Slides are available at http://www.w3.org/2006/Talks/0125-hclsig-em/
23 Activities / 60 Working, Interest and Coordination Groups, supported by the Team
Data Integration at Web Scale
Enabling a Web of Data
Enabling more effective collaboration and reuse of data at various scales
Reducing the technical and social costs for effective integration of networked data
Moving from a Web of Document to a Web of Data
Thinking back a bit... circa 1993 FTP, Gopher and Archie: popular for sharing resources on the Internet Stopped at the file level |
![]() |
Thinking back a bit... circa 1994 HTML and URIs Markup language and means for connecting resources Below the file level Stopped at the text level |
![]() |
XML, RDF, OWL and URIs Markup language and means for connecting resources Below the file, text level At the data level |
![]() |
See Also: Ivan Herman's tutorial for details regarding these specifications
Health Services integration problem in Rhode Island:
Lots of traditional manual work reduced to a short amount of time using Piggy Bank / Semantic Bank.
|
|
Search application (e.g. ringtone, game, picture) using RDF
Bringing goods closer to customers increased sales RDF was key factor in making this possible |
![]() |
Creating a Web of machine-readable homepages describing people, the links between them and the things they create and do
<foaf:Person rdf:about="http://www.w3.org/People/EM/contact#me"> <foaf:name>Eric Miller</foaf:name> <foaf:mbox rdf:resource="mailto:em@w3.org" /> <foaf:homepage rdf:resource="http://www.w3.org/People/EM/" /> <foaf:img rdf:resource="http://www.w3.org/People/EM/s00782" /> <foaf:knows rdf:resource="http://www.w3.org/People/Berners-Lee/card#i" /> </foaf:Person>
Distributed RDF/XML records describing people, who they know, projects they work on, etc. Web interface for displaying complex data Benefits of SVG, SMIL, RDF integration Open source collaboration ( credits) Example of RDF network effect combining FOAF and RDF image co-depiction ( demo) |
![]() |
|
![]() |
|
![]() |
For the developer
See the tool list at W3C for more developer tools
For the business analyst
See the Semantic Web list of Commercial applications for more
For those interested in learning more
Also, The Semantic Web Best Practice and Deployment working group maintains a list of additional Semantic Web applications and demos.
Gleaning Resource Descriptions from Dialects of Languages
A mechanism for connecting XHTML (e.g. microformats) and XML dialects with the Semantic Web.
1. Pick a way of expressing data in XHTML, and get an XSLT transformation to RDF; for example:
2. Make links from your XHTML data to the transformation, using the transformation link type:
<html xmlns="http://www.w3.org/1999/xhtml"> <head profile="http://www.w3.org/2003/g/data-view"> <title>Some Document</title> <link rel="transformation" href="http://www.w3.org/2000/06/dc-extract/dc-extract.xsl" /> <meta name="DC.Subject" content="ADAM; Simple Search; Index+; prototype" /> ... </head> ... </html>
3. Reference the GRDDL profile to make it clear what that transformation link type means:
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://www.w3.org/2003/g/data-view">
<title>Some Document</title>
...