Back
Next
In
Professional way the XML is use to share the information in the midst of some
applications or some software. Like we need to share the information of
our employees and we put the data into an XML Document then any one can get this
information from our web site with there software as well as web site.
What is RSS?
The biggest example of this sharing of information is News portals.
Like BBC.com here we can see a like of an XML file with the name of RSS.
RSS stands for "Really Simple Syndication",
RSS is a format for syndicating news and the content of news-like sites, including major news
portals like Wired, news-oriented community sites like Slashdot, and personal weblogs. But
RSS is not only for news it can be use for any kind of sharing from your web
site and the major focus for this sharing is that we will put those contents
only which will be changed frequently like stock exchange reports, news and much
more. nice-looking anything that can be had it down into discrete items can be
syndicated through RSS. the "recent changes" of RSS page will effect all of its
users. Once information about each item is in RSS format, an RSS-aware program can check the feed for changes and react to the changes in an appropriate way.
This term of RSS will be explain in RSS section which is on the right way for you. So
the real examples for this technology will be available in Learn RSS section. A
brief look of its example is as under.
XML Professional Example [RSS Example]
<rss version="0.91">
<channel>
<title>XML Tutorial at Global Guide Line Technologies</title>
<link>https://www.globalguideline.com</link>
<description>GGL is Mega IT Portal.</description>
<language>eng</language>
<item>
<title>XML
Tutorial</title>
<link>https://www.globalguideline.com/xml/</link>
<description>XML Tutorial
will teach us abut its use, standards and develop your skill.</description>
<logo>https://www.globalguideline.com/images/ggl.jpg</logo>
</item>
<item>
<title>HTML
Tutorial</title>
<link>https://www.globalguideline.com/html/</link>
<description>HTML
tutorial is basic guide to make your own web site with GGL
Technologies.</description>
<logo>https://www.globalguideline.com/images/ggl.jpg</logo>
</item>
--------------
--------------
--------------
<item>
</channel>
</rss>
Back
Next
|