473,545 Members | 2,113 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Are RSS feeds supposed to be dynamically generated?

If I make an RSS feed of my site, am I expected to build and later
update the RSS (XML) data by hand as I would any other webpage, or is
there some process by which updates to a site are automatically
incorporated into the RSS feed once the site itself is updated?

Thanks.
--Mella
Jul 20 '05 #1
5 1902
On 11 Dec 2003 09:25:30 -0800,
Mike Mella <we************ ***@hotmail.com > wrote:
If I make an RSS feed of my site, am I expected to build and later
update the RSS (XML) data by hand as I would any other webpage, or is
there some process by which updates to a site are automatically
incorporated into the RSS feed once the site itself is updated?


A client retrieving an RSS feed has no way of knowing whether it was a
static file or was dynamically generated, so what you do makes no difference
to clients. It will make a difference to *you*, of course; updating an RSS
feed by hand is tedious and likely to be a source of errors (forgetting to
update it, making a typo while hand-editing). Most sites generate
their RSS feeds automatically for this reason, but if you don't mind the
extra work, you can certainly maintain a feed by hand.

--amk
Jul 20 '05 #2
Without getting into too much detail, how are RSS feeds dynamically
updated? I mean what programming language/tool is usually used?
--Mella
A.M. Kuchling wrote:
On 11 Dec 2003 09:25:30 -0800,
Mike Mella <we************ ***@hotmail.com > wrote:
If I make an RSS feed of my site, am I expected to build and later
update the RSS (XML) data by hand as I would any other webpage, or is
there some process by which updates to a site are automatically
incorporate d into the RSS feed once the site itself is updated?

A client retrieving an RSS feed has no way of knowing whether it was a
static file or was dynamically generated, so what you do makes no difference
to clients. It will make a difference to *you*, of course; updating an RSS
feed by hand is tedious and likely to be a source of errors (forgetting to
update it, making a typo while hand-editing). Most sites generate
their RSS feeds automatically for this reason, but if you don't mind the
extra work, you can certainly maintain a feed by hand.

--amk

Jul 20 '05 #3
Mike Mella wrote:
Without getting into too much detail, how are RSS feeds dynamically
updated? I mean what programming language/tool is usually used?


Since RSS feeds are XML files, you can use whatever tool you like, including
servlets, CGI scripts written in any programming language, server modules,
anything. XSLT would seem a natural choice if your input is available in XML.

--
Klaus Johannes Rusch
Kl********@atme dia.net
http://www.atmedia.net/KlausRusch/
Jul 20 '05 #4
Mike Mella <th*******@msn. com> wrote in message news:<W1******* *************@n ews20.bellgloba l.com>...
Without getting into too much detail, how are RSS feeds dynamically
updated? I mean what programming language/tool is usually used?
--Mella


In one of my sites i use asp to generate the new feed every 24hours,
its pretty easy to do them dynamically.

For the more static feeds i use Broadcast Builder
(www.lionhardt.com/bb)
Jul 20 '05 #5
On 16 Dec 2003 10:52:22 -0800, ri*****@lionhar dt.com (Richard) wrote:
Mike Mella <th*******@msn. com> wrote in message news:<W1******* *************@n ews20.bellgloba l.com>...
Without getting into too much detail, how are RSS feeds dynamically
updated? I mean what programming language/tool is usually used?
--Mella


In one of my sites i use asp to generate the new feed every 24hours,
its pretty easy to do them dynamically.

For the more static feeds i use Broadcast Builder
(www.lionhardt.com/bb)


I generate new feeds whenever database content changes which happens
at least once per day, often more. I just use a hand written piece of
Perl, after all the structure is simple enough.
--
The Hooker
"I've had a perfectly wonderful evening, but this wasn't it"
[ www.sfwrg.org ][ www.pubfun.com ]
hooker at pubfun dot com
Jul 20 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2869
by: EmmettPower | last post by:
Hi, I have a form which includes a field 'number'. When 'number' is changed additional fields ('item_0', etc) are generated on the form using 'onchange'. I want to validate the form using Javascript before submission. I've set out the part of the validation script used to loop through the dynamically generated fields below. This is...
0
2525
by: Boris | last post by:
When I dynamically create CheckButtonList, I add ListItem(s) to my CheckButtonList object chkList chkList.Items.Add(new ListItem("My Text", "My Value")); The resulting HTML doesn't contain value="My Value". Therefore, I can't access "My Value" with Request.Form on post back. I do get the desired outcome with my RadioButtonList object...
2
1123
by: david | last post by:
I have no idea how to get the IDs of dynamically genrated CheckBoxes and the events of CheckedChange. I have dynamically generated array of CheckBoxes, checkboxes,which dynamically display in a table of a web form when Page_Load. (1) I want determine if the status of checkboxes(i, j) from checked to Unchecked or Array(k,j) from unchecked to...
6
436
by: Nathan Sokalski | last post by:
I am trying to dynamically add controls to my page, but am having trouble with controls such as buttons. I have been able to add simple controls such as Label controls, because they can be placed anywhere. I have managed to add Labels using the following code: Dim extralabel As Label = New Label extralabel.Text = "Generated Label" ...
0
882
by: asad | last post by:
ello how ru all, I want to create RSS Feeds for my website diffrent sections like news, Articles, how can i create RSS feeds for these sections in ASP.net and how RSS file dynamically update by the ASP.NET Logic pls tell me, thanks.
1
1170
by: asad | last post by:
Hello how ru all, I want to create RSS Feeds for my website diffrent sections like news, Articles, how can i create RSS feeds for these sections in ASP.net and how RSS file dynamically update by the ASP.NET Logic pls tell me, thanks.
27
13005
by: ted benedict | last post by:
hi everybody, i hope this is the right place to discuss this weird behaviour. i am getting dynamically generated text or xml from the server side using xmlhttprequest. if the server side data is STATIC, i can have whatever size of data i want. but if the data (xml or text) is generated dynamically using php, then there seems to be a size...
5
2130
by: Shawn | last post by:
Hi, I want to understand and follow RSS feed because many web pages provide RSS feed for updated new data(e.g. http://www.weather.gov/rss/). But I never get how to use it. The link below suppose explains everything and how to use it. http://www.firstgov.gov/Topics/Reference_Shelf/Libraries/RSS_Library/What_Is_RSS.shtml except: How Do I...
11
11170
by: Daz | last post by:
Hello everyone. I am sure the answer to my question is simple, but I can't seem to dynamically add an onClick event to my script. I have a table which is generated dynamically, I am just struggling getting an onClick event to show in the HTML source. Any help would be appreciated. Here is a block of my current code which doesn't work. ...
0
7468
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7656
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
7808
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7423
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7757
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
5972
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
4945
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3443
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
704
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.