Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
6k views

Reading non-standard elements in a SyndicationItem with SyndicationFeed

With .net 3.5, there is a SyndicationFeed that will load in a RSS feed and allow you to run LINQ on it. Here is an example of the RSS that I am loading: <rss version="2.0" ...
7
votes
2answers
2k views

Is there any defined atom syndication xml schema?

Yep, I asked it. There is no more thing to tell :) Thanks in advance.
5
votes
2answers
2k views

How To Add A SyndicationElementExtension To A SyndicationItem

Using the .NET System.ServiceModel.Syndication classes... I would like to add a new SyndicationElementExtension to a SyndicationItem that will export the following XML: <media:thumbnail ...
4
votes
4answers
1k views

SyndicationFeed: Content as CDATA?

I'm using .NET's SyndicationFeed to create RSS and ATOM feeds. Unfortunately, I need HTML content in the description element (the Content property of the SyndicationItem) and the formatter ...
3
votes
4answers
987 views

SyndicationItem.Content is Null

I'm trying to pull the contents of an RSS feed into an object that can be manipulated in code. It looks like the SyndicationFeed and SyndicationItem classes in .NET 3.5 will do what I need, except for ...
2
votes
1answer
356 views

How to create a SyndicationFeed with a custom namespace

How can I generate Atom Feed which will contain the namespaces displayed in the image below? All the nodes of the Atom feed have to start with "a:". Here is what I am doing right now, however it ...
2
votes
1answer
1k views

How do I read a secure rss feed into a SyndicationFeed without providing credentials?

For whatever reason, IBM uses https (without requiring credentials) for their RSS feeds. I'm trying to consume ...
2
votes
1answer
85 views

Where do I add my RSS feed into WordPress

I have the feed burner code to put into wordpress but do not know where to put it into wordpress.
2
votes
2answers
490 views

Argotic Syndication Framework v. System.ServiceModel.Syndication

I'm investigating the Argotic Syndication Framework, and I'm pretty impressed so far. However, a lot of the current implementation--at least for RSS and Atom--seem pretty comparable to ...
2
votes
1answer
342 views

SyndicationFeed Class doesn't handle RSS version 0.91

The SyndicationFeed Class in .NET only seems to support RSS version 2.0. How do I go about supporting RSS version 0.91?
2
votes
7answers
2k views

Is it possible to use authentication in RSS feeds using php?

I'm trying to develop a feed for an intranet document management system, so that staff can be notified of new documents. I have actually completed coding it, but there is no way to authenticate the ...
2
votes
2answers
424 views

How can I add line breaks to the serialized output of a SyndicationFeed object?

I'm using the SyndicationFeed class to generate an Atom feed and an Atom10FeedFormatter to serialize it. I'd like to be able to add line breaks between the elements when the file gets written to ...
1
vote
0answers
151 views

Rss20FeedFormatter Ignores TextSyndicationContent type for SyndicationItem.Summary

While using the Rss20FeedFormatter class in a WCF project, I was trying to wrap the content of my description elements with a <![CDATA[ ]]> section. I found that no matter what I did, the HTML ...
1
vote
1answer
243 views

Adding Namespaces to a SyndicationFeed rather than Individual Elements?

I have a class like this: public static class MyFeedExtensions { private readonly static XNamespace _namespace = XNamespace.Get(@"http://mynamespace"); public static XElement ...
1
vote
2answers
521 views

System.ServiceModel.Syndication.SyndicationFeed throws when the RSS document includes a <script> block embedded in an element

The code: using (XmlReader xmlr = XmlReader.Create(new StringReader(allXml))) { var items = from item in SyndicationFeed.Load(xmlr).Items select item; } The exception: Exception: ...
1
vote
2answers
180 views

How do Aweber and FeedBlitz report subscriber numbers to Feedburner?

I've looked all over for some documentation on this, but haven't found it. Some posts reference a user-agent string: ...
1
vote
1answer
1k views

Can SyndicationFeed.Load be made more robust?

I am trying to read a handful of Rss / Atom feeds with var synFeed = SyndicationFeed.Load(reader); But it throws on the slightest problem. For instance, when one Item contains a few HTML tags in ...
0
votes
1answer
26 views

Why does XmlWriter.Create() fail my test with Rss20FeedFormatter and SyndicationFeed?

The following test below passes only because new XmlTextWriter(sw) is used instead of XmlWriter.Create(sw, settings) or XmlTextWriter.Create(sw): public void ShouldGenerateRssFeed() { ...
0
votes
0answers
98 views

Sun Syndication API throwing error while trying to parse specific RSS feed

Using the SUN syndication API ROME, I am trying to parse the following RSS feed: ...
0
votes
1answer
46 views

ASPNET MVC: how do i add an image to a RSS item?

I need to add an image to my RSS feed but cannot see it. My code is: var item = new SyndicationItem ( title: Title, content: Content, itemAlternateLink: new ...
0
votes
0answers
30 views

how to create wordpress feed fetching portal like heroturko, sixrevisions.com, noupe.com?

I'm trying to develop a wordpress website like Heroturko.com, Sixrevisions.com and Noupe.com. I want to use Rss feed Fetching from different platforms and mix up the feeds at one website. Any body can ...
0
votes
2answers
50 views

Where do you put methods for common web uri paths

We have a pretty common architecture: Database Repository Layer Business Objects Services Layer - serves DTOs to the client Web Layer (MVC) We've got a number of common paths to resources, in ...
0
votes
1answer
226 views

How does one expose a WCF Syndication Service Library for URL access?

Using VS 2010, I've created a WCF Syndication Service Library, that debugs fine--browser shows the feed I created and everything. The problem is: I published this service library to IIS 7 on Server ...
0
votes
1answer
250 views

How do I get the author from SyndicationFeed object where feed has a namespace

I have an RSS feed. I am using the ASP.NET SyndicationFeed object to trawl through this feed. In this feed the authors of each post have the element name <dc:creator>. How do I get the data ...
0
votes
2answers
59 views

Syndication format for describing threaded comments?

How to describe comments tree with Atom/RSS?
0
votes
1answer
62 views

How can I delay one feed in wordpress but not the others?

Is there anyway to create a special feed in Wordpress that is on a delay that I can distribute to some of our content partners? I have found some tutorials on how to delay your feed ...
0
votes
1answer
572 views

Adding MRSS (media) to SyndicationFeed

I have a Syndication Feed. When serializing using Rss20FeedFormatter I get xmlns:cf and xmlns:cfi namespaces declared in the xml. The media element remains inline. <media:thumbnail ...
0
votes
1answer
66 views

Is there a way to display javascript content in blog feeds

Does RSS/Atom have a semi-official method of including active (read:javascript) content in it's items? I know about RSS enclosures, but I'm presuming that's for true multimedia - ie mp3 and the ...
0
votes
3answers
482 views

How do I add a CSS stylesheet to a WCF generated RSS feed?

I have a WCF service that uses a System.ServiceModel.Syndication.SyndicationFeed to create an RSS feed. But I'm having trouble figuring out how to add a Processing Instruction to output that points ...
-1
votes
2answers
1k views

Converting RSS feed to Atom via Feedburner for existing blog

I have an RSS based blog that I now want to convert to Atom. Feedburner can change the output format in one click. Will my existing subscribers notice any change on the reader side? (other than ...