dynamic rss not able to be subscribed to

  • Thread starter Thread starter fredd00
  • Start date Start date
F

fredd00

Hi

we have some page that genreate rss 2.0 feed the url is like .../
rssfeed.aspx?id=123

the page displays properly in browsers, but when we try to add the
page to a reader
like google reader , we always get an error saying : no feed available
for .../rssfeed.aspx?id=123

is there a reason that this page cannot be subscribed to ? it is
genreating a rss 2.0 feed

thanks
 
If a request to the feed url, regardless of querystring parameters or
whatever else, generates a legitimate, well-formed RSS XML document, then
there is no reason why you should get the errors you describe. Does your RSS
document have an internal link to an XSLT stylesheet?
Try requesting the feed with the WebClient Class or even use
DataSet.ReadXml(your feed url). Does it parse?
Peter
 
Back
Top