How to use XML in Real World

In this article I have discribed how XML can be implemented into real world.
  • 2196

Use of XML in Real World

Introduction

Web developers has become more flexible as XML technologies launched as they were not before . It can be link with real world with many ways such as connecting XML to databases (both locally and on web servers), Writing and using XML schemas, XMLNEWS, Creating graphical XML browsers, Working with the Simple Object Access Protocol (SOAP).

Below example is for XML  NEWS

  • XML NEWS is a specification for exchanging news and other informations.

  • Using such a standard makes it easier for both news manufacturer and news clients to produce, receive, and archive any kind of news information across different hardware, software, and programming languages.

<?xml version="2.0" encoding="ISO-8029-1"?>

  <heading>    

    <head>

      <title>ICC World Cup 2011</title>      

  </head>   

    <body>      

      <headline>

          <hl1>143 Played between India and Srilanka </hl1>        

    </headline>

      <byline>

          <bytag>India won the match by 6 wickets</bytag>       

    </byline>

      <dateline>

          <location>Srilanka</location>       

    </dateline>      

  </body>        

</heading>

Further Readings 

You may also want to read these related articles :

Ask Your Question 

Got a programming related question? You may want to post your question here.

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.