Questions tagged [syndication]

Syndication is the process of publishing data in a common format so that it can be distributed to multiple clients.

Syndication is intended to facilitate distribution for data which is updated frequently or based on a schedule. Client software can be configured to check for updates periodically and trigger automatic updates, revision control, or archiving.

References

81 questions
3
votes
2 answers

How to display content of one site in another using PHP?

I'm trying to show contents of two websites in one another , someone suggest me to use RSS reader but my question is : is there anything else i could try to show the contents , beside using rss !? i thought i can connect to the database of another…
Joyan
  • 79
  • 1
  • 1
  • 5
3
votes
5 answers

The type or namespace name 'Syndication' does not exist in the namespace 'System.ServiceModel' After updating to VS2010

i get the following error when trying to compile my asp.net site after updating the project from vs2008 to vs2010 The type or namespace name 'Syndication' does not exist in the namespace 'System.ServiceModel' (are you missing an assembly…
schmoopy
  • 6,419
  • 11
  • 54
  • 89
2
votes
1 answer

SyndicationFeed AttributeExtensions namespace prefix

I'm adding some custom iTunes podcast tags to a RSS Feed. feed.AttributeExtensions.Add(new XmlQualifiedName(itunesPrefix, "http://www.w3.org/2000/xmlns/"), itunesNs); var extensions = feed.ElementExtensions; …
Ben Foster
  • 34,340
  • 40
  • 176
  • 285
2
votes
2 answers

Create ASP.NET Syndication Feeds with SqlConnection and VB.NET

This seems to be a great article by Scott Mitchell for creating syndicated feeds in ASP.NET 3.5. The problem for me is that it uses C# and Linq, which I'm not as sharp on at the current…
Randy Burgess
  • 4,835
  • 6
  • 41
  • 59
2
votes
2 answers

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 disk. I realize the feed readers don't care, but…
Matt
  • 5,052
  • 4
  • 36
  • 54
2
votes
1 answer

Problem with excluding namespace from XmlWriter.WriteStartElement

I have a little problem that perhaps you can help me with. I try to use the XmlWriter to write an XML-tag that looks like this (w3c feed recommendation): The problem is…
Patrik Svensson
  • 13,536
  • 8
  • 56
  • 77
2
votes
1 answer

Extract Image and More Tags from Item in RSS

I want to extract data from this URL: http://rss.cnn.com/rss/edition.rss So each Item looks like this: <![CDATA[Ireland stuns England at home of cricket]]>
Dorki
  • 1,021
  • 2
  • 8
  • 23
2
votes
2 answers

Return T where are different return types

I have different return types so I can't decide what to use for that. I was thinking something like that below, but if you have other ideas I am open for that. public T GetValue(ContentType type) { foreach (SyndicationItem item in…
mszabolcs
  • 67
  • 1
  • 10
2
votes
1 answer

C# RSS Syndication, How to format text programmatically

I"m trying to build a news feed application and i'm having trouble formatting the results. I'm sure the issue is just lack of experience. There are two main issues I'm having. The first is the item.summary.text pulls a bunch of links past the…
2
votes
0 answers

XML error: SYSTEM or PUBLIC, the URI is missing

I get this error trying to fetch my rss feed using wordpress syndication (FeedWordPress). In apache logs there are no records about trying to fetch it. Looks like wordpress ignores it. Url to my rss is right, I tried to fetch digg rss and it was…
Boris Bondarenko
  • 153
  • 1
  • 2
  • 7
2
votes
2 answers

display images in rss feeds using SyndicationItem class

i create rss feed using System.ServiceModel.Syndication public ActionResult RSS() { List rssNodes = GetNodeList(takeNum: 20).ToList(); var syndItems = new List(); foreach (var item in rssNodes) { var…
Ahmad Alaa
  • 767
  • 9
  • 30
2
votes
2 answers

Are RSS and Atom sufficient for publication and syndication, or should I investigate a third option?

For web feeds we all know of RSS and Atom, but is that it? Isn't there a third option? If not, why? Are RSS and Atom more than qualified to meet today's demand to distribute information?
corgrath
  • 11,673
  • 15
  • 68
  • 99
2
votes
1 answer

Get request parameter in django syndication?

Here is a url containing the hash for a super-secret feed: http://127.0.0.1:8000/something/feed/12e8e59187c328fbe5c48452babf769c/ I am trying to capture and send the variable '12e8e59187c328fbe5c48452babf769c' which is feed_hash (acts as a slug…
1Up
  • 994
  • 2
  • 12
  • 24
2
votes
1 answer

How to read "dc:creator" element from an RSS feed using System.ServiceModel.Syndication

Scenario I am consuming an RSS feed that looks, in part, like this: Blog Title Here http://blogurl.com/2010/03/23/title/ http://blogurl.com/2010/03/23/title/#comments
Portman
  • 31,785
  • 25
  • 82
  • 101
2
votes
1 answer

Requesting non-default number of items in RSS document

Is there a standard way to request other/more than a default number of (say, typically 10) items to be included in a RSS document as returned from a web feed/server. For instance do some/most web feeds understand a URL parameter to this effect and…
Drux
  • 11,992
  • 13
  • 66
  • 116