Connecting Tech Pros Worldwide Help | Site Map

Query Regd Namespace

Newbie
 
Join Date: Aug 2006
Posts: 1
#1: Aug 30 '06
Hi All,
What is the importance of namespace in XML


Thanks,
Aarthi
Dormilich's Avatar
Moderator
 
Join Date: Aug 2008
Location: Leipzig, Germany
Posts: 3,629
#2: Jan 22 '09

re: Query Regd Namespace


see Namespaces in XML 1.0 (Second Edition)
Moderator
 
Join Date: Mar 2006
Posts: 1,103
#3: Jan 22 '09

re: Query Regd Namespace


Simply, it allows you to distinguish data from multiple sources so that you can treat them differently. eg, the 2 record elements are different:
Expand|Select|Wrap|Line Numbers
  1. <table xmlns="www.query.com">
  2.   <record>
  3.     <id>14</id>
  4.     <value>3252</value>
  5.   </record>
  6. </table>
  7.  
  8. <record xmlns="www.music.org">
  9.   <title>Please Hammer Don't Hurt 'Em</title>
  10.   <artist>MC Hammer</artist>
  11. </record>
  12.  
Reply


Similar XML bytes