Wide and cheap availability of cloud-based media services is upon us. With the transformations these services are already bringing to the consumption of music, video and interactive media, change has likewise come to professional workflows. Documents in 2012 are read, written, collaborated on, and distributed anywhere an Internet-enabled device can reach – which is to say, everywhere.
In his session at the 10th International Cloud Expo, Christopher Kenneally, Director of Business Development a...| By Dr. James Hendler, Bijan Parsia | Article Rating: |
|
| September 27, 2002 12:00 AM EDT | Reads: |
17,975 |
XML-based formats are now becoming the dominant way of marking up data on the Web. There are standard XML languages for hypertext (XHTML), graphics (SVG), syndication (RSS), multimedia (SMIL), service description and discovery (WSDL and UDDI), and many others, not to mention a plethora of more specialized, often ad hoc, XML-based languages.
Furthermore, there are standard ways to query (XPath and XQuery), link into (XLink and XPointer), and parse and program with (SAX, and DOM) your XML documents. Finally, integration with the many other XML formats can be done in a reasonably straightforward manner either by inclusion (using XML Namespaces) or transformation (using XSLT).
XML as an Interchange Mechanism
Given these facts, it's hard to argue against XML as the interchange mechanism for the Web. But the XML model remains primarily rooted in documents - in particular, textual documents with hierarchical structure. For example, a well-formed XML document can have a <US-address> element that contains <US-street-address-line> and <US-zip-code> elements. From the pure XML point of view, there's nothing but a document-based description of the names and current arrangements of these elements: that is, that a <US-address> contains a <US-zip-code>, which is a string. We could, of course, also have a document with two <US-zip-code>s in it. An XML Schema for <US-address>s could go further and state the specific constraints on that structure, for example, that a <US-address> can contain many <US-street-address-line> elements but only one <US-zip-code> element. With this schema a validator can conclude that our <US-street-address> with two <US-zip-code>s was syntactically incorrect.
However, the schema doesn't actually capture much of the semantics of an address. For example, if we were to take several different documents and find two addresses that were identical except for their zip codes, we wouldn't be able to realize, on the basis of the schema, that at least one zip code was wrong. Similarly, there's no automatic way to convert between two very similar encodings of address (for example, to one where there could only be one <US-street-address> element, which itself had many <US-street-address-line>s). Further, if we wanted to do something complex, such as integrating <US-street-address>s with our personnel database, we would have to rely on a human programmer. We'd need someone to provide a specific mapping from the <US-address> to the various fields in our database structure, and this mapping would be vulnerable to even small changes in our XML format or in the database - and just forget about reusing that mapping with unrelated systems.
More strikingly, there's no clear way to connect our various <US-address>s to more general facts about addresses - for example, that they identify locations, that mail can be delivered to them, or that they're associated with people or businesses. And neither the XML model nor XML Schema are going to be much help in determining that a mailing address is like a fax number, at least in the sense that mailing a letter to an address and faxing it to a number both get the text of the missive to its recipient.
On the Web, however, we really need this semantic information. We want to be able to connect an address that we've encoded in XML in some Web document to people, places, concepts, letters, other documents, databases, directories, PDA contact lists, calendars, sensors, services, and all the other resources on the Web. Done right, such links would allow information in various forms and formats to be automatically manipulated in a coherent way by our computer programs. XML is clearly an important part of the answer, but it's very hard to see the XML data model as a feasible way to represent these links and the real-world semantics they encode.
Modeling Links
By examining how links work on the current Web, we can get some idea of what it takes to model them. Web links have two key aspects: first, things on the Web are consistently identified by URIs (Uniform Resource Identifiers). Second, a Web link has the following tripartite structure:
While, naturally, it's possible to encode Web links in XML (e.g., with <a href="..."/>), note how little in common a Web link has with the XML data model: Web links use URIs instead of tags or QNames; unlike XML, Web links impose no inherent hierarchy, no notion of containment, and no sequencing of the things to which they relate. In fact, a set of Web links doesn't look much like a DOM tree, but does look an awful lot like an RDF (Resource Description Framework) graph, where each link corresponds to an RDF triple. After all, each part of an RDF triple can be, and most often is, identified by a URI, and the structure of a triple is obviously tripartite.
The parts of a triple, by design, correspond to the parts of a Web link:
- The subject of a triple is where you start.
- The predicate connects the subject and the object.
- The object corresponds to the target of a Web link.
RDFS is a simple language for creating Web-based "controlled vocabularies" and taxonomies. The language defines several RDF predicates for making links between concepts. Most notably, RDFS defines class and property relations and provides a mechanism for restricting the domains and ranges of the properties. In RDFS, for example, we can express site-specific Yahoo-like Web site categories as a hierarchy of classes with sets of named (sometimes inherited) properties. This allows other sites to connect their own information to these terms, providing better interoperability for use in B2C, B2B, or other Web transactions.
OWL extends RDFS into a more capable language, usable for thesauruses and domain models. OWL is based on DAML+OIL, a Web language jointly developed by the U.S. Defense Advanced Research Projects Agency (DARPA) and the European Union's Information Science and Technology (IST) program. DAML+OIL has begun to get heavy use in the government, and in November 2001 the W3C chartered a Web Ontology Working Group to refine the DAML+OIL standard into a W3C recommendation language, now called OWL.
OWL extends RDFS with many more constructs for defining the relationships between classes and, more important, placing restrictions on how properties (i.e., predicates) can be used when linking entities. OWL thus allows users to define simple models of their domains using these properties and their constraints. A full discussion of the language is beyond this article (see www.w3.org/2001/sw/WebOnt for more details), but revisiting the "Address" example should make a few things clearer.
XML and OWL
In XML we were able to say that there was a document field called a <US-address> that had subfields of a street address, a city name, a state name, and a zip code. In OWL we can explicitly name these objects as classes and properties, and place constraints on how to legally relate these entities to each other or to entities defined in other documents. Thus, for example, we could mention that cities are in states, and that each city is in one, and only one, state. We could know that a U.S. address is a type of international address where the state field is restricted to be one of Alabama, Maine, New York, and so on, and that these addresses have zip codes that consist of either five or nine numbers. We could also add the information that, in general, international addresses have country codes, and that the country code for U.S. addresses always has the value "USA," and many other such facts. (This sort of specification of these relationships in a formal language is called ontology, thus the term ontology language for OWL.)
Ontologies let us more precisely link to other documents and resources based on shared use of conceptual terms, even where there is only a partial match (a key difference from current XML-based approaches). Our addresses could thus be linked in turn to other vocabularies - for example, knowing that an address names a location, we could link to other location-based Web resources. These could be databases or Web services that would compute the location of the nearest airport (another kind of location) to a given address, the weather forecast for the city the address is located in, or other such location-specific data. Metadata can also be used to link nontext media to ontologies, expressing, for example, that the photo in a particular picture is of a house at a particular address or that the place to complain about the contents of a particular streaming video is in a particular state (allowing you to compare its location to yours and see if local content restrictions might apply).
Figure 1 provides an example of the linking of a Web site to ontological information. In this case, from a presentation on OWL given at the W3C session of the World Wide Web Conference in May 2002, information about the keynote speaker is linked to information about events, photos, and people.
The example of addresses is an extremely basic one, yet we already see a tremendous number of possible uses. By mapping the implicit semantics inherent in XML DTDs and schemas into the explicit relationships expressible in RDFS and OWL, a whole range of new applications, largely created by the linking of existing Web resources, become easily implementable. In the business world this kind of linking to models could be done for SEC filings, supply-chain databases, business services posting WSDL descriptions, and a virtually infinite range of others, allowing enterprise integration on a Web-wide scale. Current Semantic Web-related research is also exploring the use and extension of these RDF-based languages to express trust and authorization relationships, to do the automated discovery and composition of Web services, and to design new languages to continue to enhance the potentially revolutionary capabilities of the Semantic Web.
The Semantic Web is being built on models based on the RDF representation of Web links. To achieve their full impact, however, the enhanced models enabled by the Semantic Web crucially need to be tied to the document-processing and data-exchange capabilities enabled by the spread of XML technologies. If XML- and RDF-based technologies were incompatible, as some people seem to think they are, it would be a true shame. But, in fact, they aren't. While the underlying models are somewhat different, the normative document exchange format for RDF, RDFS, and OWL is XML. Thus, to those preferring to think of the whole world as XML based, RDF, RDFS, and OWL may simply be thought of as yet another XML language to be managed and manipulated using the standard toolkit. To the RDF purist, the documents and datasets being expressed in XML and XML Schema can anchor their models with interoperable data. To those focused on the world of Web services, SOAP and WSDL can carry, in their XML content, RDF models expressing information that can be easily found, linked, and discovered.
Of course, as is the case with any groups doing overlapping tasks, there is friction between some in the RDF community and some in the XML world. RDF folks often complain about the (for them) superfluous intricacies of XML. XML experts shake their heads at the way the RDF/XML serialization abuses QNames and XML Namespaces and treats certain attributes and child elements as equivalent. However, these kinds of complaints are nothing new. In fact, they're common in the XML community itself: witness the fury that some XML people express over XSLT's use of QNames as attribute content (to pick one example). Similarly, the RDF world has plenty of dark and overcomplicated corners. Both sets of languages are also continuing to evolve, and each is also exploring new non-XML syntaxes (consider Relax-NG, XQuery, and XPath).
Best of the Best
In short, the Semantic Web offers powerful new possibilities and a revolution in function. These capabilities will arrive sooner if we stop squabbling and realize that the rift between XML- and the RDF-based languages is now down to the minor sorts of technical differences easily ironed out in the standards process or kludged by designing interoperable tools. Combining the best of all these languages, and their variants, is easily enabled by the combination of the "documents" of the XML Web with the "links" expressed in RDF. Throw interoperable Web services into the mix and the vision is compelling. The future of the Web can be even more exciting than its past, and pulling all these threads together will get us there.
Useful Links
Published September 27, 2002 Reads 17,975
Copyright © 2002 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Dr. James Hendler
Jim Hendler, a University of Maryland professor, is the Director of Semantic Web and agent technology at the Maryland Information and Network Dynamics Laboratory. A fellow of the American Association for Artificial Intelligence, Jim was formerly chief scientist for information systems at the U.S. Defense Advanced Research Projects Agency (DARPA) and cochairs the Web Ontology Working Group for the W3C. He has authored close to 150 technical papers in the areas of artificial intelligence, robotics, agent-based computing and high performance processing. Hendler was the recipient of a 1995 Fulbright Foundation Fellowship, is a member of the US Air Force Science Advisory Board and is a prominent player in the World Wide Web Consortium's Semantic Web Activity.
More Stories By Bijan Parsia
Bijan Parsia is a Semantic Web researcher at the Maryland Information and Network Dynamics Laboratory. His research interests include Web logics and rule engines, Semantic Web services, fine-grained, reflective annotation systems, and trust-focused reasoning.
bparsia@isr.umd.edu
Wide and cheap availability of cloud-based media services is upon us. With the transformations these services are already bringing to the consumption of music, video and interactive media, change has likewise come to professional workflows. Documents in 2012 are read, written, collaborated on, and distributed anywhere an Internet-enabled device can reach – which is to say, everywhere.
In his session at the 10th International Cloud Expo, Christopher Kenneally, Director of Business Development a...Feb. 17, 2012 02:00 PM EST Reads: 449 |
By Jeremy Geelan With Cloud Expo 2012 New York (10th Cloud Expo) just four months away, what better time to start introducing you in greater detail to the distinguished individuals in our incredible Speaker Faculty for the technical and strategy sessions at the conference...
We have technical and strategy sessions for you every day from June 11 through June 14 dealing with every nook and cranny of Cloud Computing and Big Data, but what of those who are presenting? Who are they, where do they work, what else h...Feb. 17, 2012 11:45 AM EST Reads: 488 |
By Elizabeth White Cloud is a shift from the focus on underlying technology implementation to leveraging existing implementations and further building upon them. Cloud orchestration or a network of clouds is the wave of the future where these clouds can operate with elasticity, scalability, and efficiency. Effective service management is an important aspect of managing such networks. The transition to the cloud will enable the further aggregation of composite web services and enhanced business-to-business capabili...Feb. 17, 2012 10:58 AM EST Reads: 436 |
By Brian McCallion I've been working on Enterprise Cloud Strategy and in the course of this work identified some interesting and non-obvious opportunities in the Cloud.
One solution I’ve examined is the well-crafted solution that is enStratus. enStratus has built a SaaS Cloud Management / Governance product focused on providing critical management, monitoring, governance capabilities tailored to the needs of the Global 2000 market, rather than the startup market. As I have worked with a current Fortune 500 clie...Feb. 17, 2012 07:00 AM EST Reads: 3,669 |
By Kevin Jackson From the NRO Press Release: "Considered one of the top women leaders in Federal IT, Ms. Singer was recognized for her innova... Feb. 17, 2012 07:00 AM EST Reads: 489 |
By Jeremy Geelan With Cloud Expo 2012 New York (10th Cloud Expo) now under four months away, what better time to start introducing you in greater detail to the distinguished individuals in our incredible Speaker Faculty for the technical and strategy sessions at the conference...
We have technical and strategy sessions for you every day from June 11 through June 14 dealing with every nook and cranny of Cloud Computing and Big Data, but what of those who are presenting? Who are they, where do they work, what e...Feb. 16, 2012 07:30 AM EST Reads: 923 |
By Jeremy Geelan "Having been in the IT field for many years, I believe the cloud computing chapter in the industry is an exciting one and I am proud to be a part of it," said National Reconaissance Office (NRO) Chief Information Officer Jill T. Singer Tuesday, as it was announced that she was one of 10 winners of the 2012 CloudNOW "Top Ten Women in Cloud" Awards.Feb. 16, 2012 06:30 AM EST Reads: 595 |
By Pat Romanski 2011 was a year of rapid adoption for public and private cloud services. Instant and on-demand server provisioning was the driving force behind the massive growth. On top, cloud server templates and script automation simplified application installation for simple and pre-defined application stacks, but have not targeted more complex enterprise application environments.
In his session at the 10th International Cloud Expo, John Yung, CEO of Appcara, will discuss how 2012 will be the year for app...Feb. 16, 2012 06:30 AM EST Reads: 2,038 |
By Liz McMillan As more enterprises are adopting clouds, the nature of cloud computing is changing. Previously, clouds were used to test applications or for non-mission critical applications. Today, enterprises are using clouds for cost-saving advantages and launching more mission critical applications that have defined performance needs.
In his session at the 10th International Cloud Expo, Eric Shepcaro, CEO and Chairman of the Board of Telx, will discuss how distributed computing has many advantages. It wou...Feb. 16, 2012 05:45 AM EST Reads: 1,840 |
By Liz McMillan Building a cloud computing environment with on-demand access to compute, network, and storage resources requires an elastic infrastructure at multiple levels. Virtualization combined with x86 servers has transformed the way we scale out compute resources. Unfortunately, legacy Fibre Channel and iSCSI storage architectures are rooted in rigid mainframe-era designs, and are fundamentally mismatched with the dynamic, shared modern data center.
In his session at the 10th International Cloud Expo, ...Feb. 16, 2012 05:30 AM EST Reads: 2,412 |
- How Are You Building Your Cloud?
- Cloud Expo New York Speaker Profile: Dave Asprey – Trend Micro
- Big Data in Telecom: The Need for Analytics
- Big Data Gold Mine in Cloud Governance and Automation
- Drool, Britannia? Is the UK Failing the Cloud?
- Cloud Expo New York Speaker Profile: Mårten Mickos – Eucalyptus Systems
- Thoughts on Big Data and Data Virtualization
- Cloud Expo New York Speaker Profile: Bernard Golden – HyperStratus
- What Motivates Open Standards in the Cloud?
- What to Expect in 2012: Cloud Computing and Open Source Software
- Will PaaS Finally Bring Open Source Love to the Enterprise?
- Australia's Lunatic NBN OK for Cloud (Update)
- The Future of Cloud Computing: Industry Predictions for 2012
- HP Puts Activist Shareholder on Board
- Gartner Hype Cycle for Emerging Technologies 2011
- How Are You Building Your Cloud?
- Cloud Expo New York Speaker Profile: Dave Asprey – Trend Micro
- Big Data in Telecom: The Need for Analytics
- i-Technology in 2012: Five Industry Predictions
- Big Data Gold Mine in Cloud Governance and Automation
- 9th International Cloud Expo | Cloud Expo Silicon Valley – Photo Album
- Drool, Britannia? Is the UK Failing the Cloud?
- Microsoft Tries Hadoop on Azure
- Cloud Expo New York Speaker Profile: Mårten Mickos – Eucalyptus Systems
- What is Cloud Computing?
- The Top 150 Players in Cloud Computing
- Six Benefits of Cloud Computing
- Virtualization Conference Keynote Webcast Live on SYS-CON.TV
- What's the Difference Between Cloud Computing and SaaS?
- GDS International: Global Warming Scam?
- Twenty-One Experts Define Cloud Computing
- The Future of Cloud Computing
- The Top 250 Players in the Cloud Computing Ecosystem
- SOA 2 Point Oh No!
- Cloud Expo Europe 2009 in Prague: Themes & Topics
- A Brief History of Cloud Computing: Is the Cloud There Yet?








With Cloud Expo 2012 New York (10th Cloud Expo) just four months away, what better time to start introducing you in greater detail to the distinguished individuals in our incredible Speaker Faculty for the technical and strategy sessions at the conference...
We have technical and strategy sessions for you every day from June 11 through June 14 dealing with every nook and cranny of Cloud Computing and Big Data, but what of those who are presenting? Who are they, where do they work, what else h...
Cloud is a shift from the focus on underlying technology implementation to leveraging existing implementations and further building upon them. Cloud orchestration or a network of clouds is the wave of the future where these clouds can operate with elasticity, scalability, and efficiency. Effective service management is an important aspect of managing such networks. The transition to the cloud will enable the further aggregation of composite web services and enhanced business-to-business capabili...
I've been working on Enterprise Cloud Strategy and in the course of this work identified some interesting and non-obvious opportunities in the Cloud.
One solution I’ve examined is the well-crafted solution that is enStratus. enStratus has built a SaaS Cloud Management / Governance product focused on providing critical management, monitoring, governance capabilities tailored to the needs of the Global 2000 market, rather than the startup market. As I have worked with a current Fortune 500 clie...
With Cloud Expo 2012 New York (10th Cloud Expo) now under four months away, what better time to start introducing you in greater detail to the distinguished individuals in our incredible Speaker Faculty for the technical and strategy sessions at the conference...
We have technical and strategy sessions for you every day from June 11 through June 14 dealing with every nook and cranny of Cloud Computing and Big Data, but what of those who are presenting? Who are they, where do they work, what e...
"Having been in the IT field for many years, I believe the cloud computing chapter in the industry is an exciting one and I am proud to be a part of it," said National Reconaissance Office (NRO) Chief Information Officer Jill T. Singer Tuesday, as it was announced that she was one of 10 winners of the 2012 CloudNOW "Top Ten Women in Cloud" Awards.
2011 was a year of rapid adoption for public and private cloud services. Instant and on-demand server provisioning was the driving force behind the massive growth. On top, cloud server templates and script automation simplified application installation for simple and pre-defined application stacks, but have not targeted more complex enterprise application environments.
In his session at the 10th International Cloud Expo, John Yung, CEO of Appcara, will discuss how 2012 will be the year for app...
As more enterprises are adopting clouds, the nature of cloud computing is changing. Previously, clouds were used to test applications or for non-mission critical applications. Today, enterprises are using clouds for cost-saving advantages and launching more mission critical applications that have defined performance needs.
In his session at the 10th International Cloud Expo, Eric Shepcaro, CEO and Chairman of the Board of Telx, will discuss how distributed computing has many advantages. It wou...
Building a cloud computing environment with on-demand access to compute, network, and storage resources requires an elastic infrastructure at multiple levels. Virtualization combined with x86 servers has transformed the way we scale out compute resources. Unfortunately, legacy Fibre Channel and iSCSI storage architectures are rooted in rigid mainframe-era designs, and are fundamentally mismatched with the dynamic, shared modern data center.
In his session at the 10th International Cloud Expo, ...
We have previously provided a Quickstart guide to standing up Rackspace cloud servers (and have one for Amazon servers as well). These are very low cost ways of building reliable, production ready capabilities for enterprise use (commercial and government).
Is Big Data destined for only the top 3,000 companies worldwide? What about medium or small companies who are equally as data-driven? Is there a place for Big Data in SMB markets? When I talk to SMB companies about their use of public cloud services, it’s a no-brainer. Pay as you go, lower costs up...
Israel-based startup Porticor launches this week with technology aimed at giving enterprises a way to encrypt data held in cloud computing services, including those from Amazon and Rackspace.
Porticor Virtual Private Data is focused on protecting data at rest in cloud-based computing centers where ...
If you are running the BIG-IP Edge Client on your iPhone, iPod or iPad, you may have gotten an AppStore alert for an update. If not, I just wanted to let you know that version 1.0.3 of the iOS Edge Client is available at the AppStore.
The main updates in v1.0.3:
URI scheme enhancement allows passi...
Statistics matter, not only in business, but increasingly also in our social life - well, at least in our social media life. Some of the statistics I noticed this week were round numbers, like 1000. With 1000 representing both the number now showing under "followers" in Twitter and the revenue numbe...
Let's face it right now the cloud is pretty immature. The level of automation and management of these environments are analogous to the early assembly lines, but it won't be this way long. This is not the industrial revolution and it moves at a wicked fast pace. Before we know it the next generation...
In previous posts such as Cloud Computing: Hype, Vision or Reality?, Hyped Cloud Technologies, PAAS is not Mainstream yet, SaaS is going Mainstream, Future applications: SaaS or traditional? I discussed Cloud Computing.
Recently I read Joe McKendrick's interesting article titled:Cloud Computing Mar...
Having covered Cloud Foundry, Force.com, Google App Engine and Red Hat OpenShift, we now take a look at Microsoft’s PaaS offering, Windows Azure.
Microsoft Windows Azure Platform is a Platform as a Service offering from Microsoft. It was announced in 2008 and became available in 2010. Since then Mi...
Many virtualization vendors offer certifications. With that in mind, is there really any value in pursuing these certifications from Microsoft and VMware? Is one more "valuable" than the other?
First, let me say that I am a big proponent of technical certifications. That is the reason why I have my...








