XML: Difference between revisions

424 bytes added ,  7 April 2008
m
Added derivation
(New page: '''XML''' is a general purpose markup language. It is generally used to store data in a standard way and is useful for exachanging data. XML is commonly used as part of SOAP [[Web Se...)
 
m (Added derivation)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
'''XML''' is a general purpose markup language.  It is generally used to store data in a standard way and is useful for exachanging data.
'''XML''': eXtensible Markup Language - is, like [http://en.wikipedia.org/wiki/HTML HTML], a sub-set of [http://en.wikipedia.org/wiki/SGML SGML] - Standard Generalized Markup Language - itself a standardised form of [[http://en.wikipedia.org/wiki/IBM IBM's]] [[http://en.wikipedia.org/wiki/IBM_Generalized_Markup_Language GML]] - Generalized Markup Language.
 
XML is a general purpose markup language.  It is generally used to store data in a standard way and is useful for exachanging data.


XML is commonly used as part of [[SOAP]] [[Web Services]].
XML is commonly used as part of [[SOAP]] [[Web Services]].
Line 31: Line 33:
   <customer id=2>
   <customer id=2>
The attribute ''id'' belongs to the ''customer'' element and the value of the attribute is 2.  Data stored in attributes are generally used to allow easy processing of the XML file.  In this example having an ''id'' element allows you to easily find the customer element using a [[FindNode]] function.
The attribute ''id'' belongs to the ''customer'' element and the value of the attribute is 2.  Data stored in attributes are generally used to allow easy processing of the XML file.  In this example having an ''id'' element allows you to easily find the customer element using a [[FindNode]] function.
==Using XML with Visual DataFlex==
*[[XML Logging]]
*[[XML Replay]]


==External Links==
==External Links==