Cisco Cisco Process Orchestrator 2.X User Guide

Page of 828
 
A-60
Cisco Tidal Enterprise Orchestrator Reference Guide
OL-24928-01
Appendix A      Managing Core Activities
  Managing Core Activity Definitions
Namespace Examples
In this example, the elements prefixed with xdc are associated with a namespace whose name is 
, while those prefixed with h are associated with a namespace whose name is 
The prefixes are linked to the full names using the attributes on the top element whose names begin. 
xmlns:. The prefixes don't mean anything at all - they are just shorthand placeholders for the full names. 
Those full names, you will have noticed, are URLs, i.e. Web addresses. 
Note
For additional examples, see 
.
Example XML
<h:html xmlns:xdc="http://www.xml.com/books"
        xmlns:h="http://www.w3.org/HTML/1998/html4">
 <h:head><h:title>Book Review</h:title></h:head>
 <h:body>
  <xdc:bookreview>
   <xdc:title>XML: A Primer</xdc:title>
   <h:table>
    <h:tr align="center">
     <h:td>Author</h:td><h:td>Price</h:td>
     <h:td>Pages</h:td><h:td>Date</h:td></h:tr>
    <h:tr align="left">
     <h:td><xdc:author>Simon St. Laurent</xdc:author></h:td>
     <h:td><xdc:price>31.98</xdc:price></h:td>
     <h:td><xdc:pages>352</xdc:pages></h:td>
     <h:td><xdc:date>1998/01</xdc:date></h:td>
    </h:tr>
   </h:table>
  </xdc:bookreview>
 </h:body>
</h:html>