An example of RSS document with explanation - RSS

An example of RSS document with explanation.

The first line defines the XML version and the character encoding used in the document. The next line defines the version of RSS. The <channel> element is used to describe the RSS feed. The <channel> element has three tags; <title>, <link> and <description>.
<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">

<channel>
<title>This is a sample website</title>
<link>http://www.sample.com</link>
<description>Sample website</description>
<language>en-us</language>
</channel>
</rss>
20 Soap Interview Questions and Answers
SOAP interview questions with answers for freshers and experienced, SOAP interview FAQ - In this series, we have covered all about SOAP and answered the questions that might be asked during an interview.
What is SOAP? - SOAP
SOAP, Simple Object Access Protocol is a communication protocol, a way to structure data before transmitting it......
Examples where SOAP is used - SOAP
Remote methods over multiple platforms and technologies are used with HTTP. SOAP is XML based protocol and platform-agnostic.......
Post your comment