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
1
vote
2 answers

ASP.NET C# Write RSS feed for Froogle

I'm trying to create a RSS 2.0 feed in ASP.NET C# with products to provide to Froogle. The RSS feed should look like: http://www.google.com/support/merchants/bin/answer.py?answer=160589&hl=en I'm using the SyndicationFeed and SyndicationsItems to…
Peter
  • 45
  • 2
  • 4
1
vote
3 answers

Is there a clean way to determine RSS version?

Is it possible to determine the feed type and version in a way so that you can make sure that you have the correct version. At the lowest level so to speak. Namespaces is an obvious approach, but its not present for a lot of feeds. Any…
user298193
1
vote
1 answer

SyndicationFeed RSS: Element 'channel' with namespace name '' was not found

I am trying to load as a datasource an rss (xml format), but when I am trying to load it to the Syndication feed it raise an error: Element 'channel' with namespace name '' was not found. Line 1, position 21. This is my Code: public…
user2528557
  • 1,397
  • 2
  • 9
  • 12
1
vote
2 answers

What's the best way to syndicate content of a classified website: XML, Javascript, other?

I'm working on a central classified website where dealers will enter their ads. This server will run PHP/MySQL. I want dealers to be able to retrieve their ads to display on their own website as well. On a dealer website, we should be able do what…
Luc
  • 21
  • 3
0
votes
1 answer

How Can I expose RSS Syndication Feed through WCF Web Service to JQuery client

I wanto to build a WCF service that read RSS Syndication Feed (.NET 3.5 SP1). Then I want to consume the wcf service using JQuery in a web client. Are you asking why I don't directly consume it from the client? I think that there are some cross…
None
0
votes
2 answers

django syndication feed framework: adding CSS to RSS

Adding CSS to RSS is quite simple as shown in here: http://www.petefreitag.com/item/208.cfm Creating RSS is simple with django too as documented in here: https://docs.djangoproject.com/en/1.3/ref/contrib/syndication/ How to combine these two? Or…
JackLeo
  • 4,579
  • 9
  • 40
  • 66
0
votes
1 answer

Should a new app be created to handle syndication of a blog?

The blog is simple. I just make posts with text and pictures. That being the case, I'm wondering if it is best to put my Feed class in the models.py of my blog app, or create a new app specifically for the Feed class.
secolinsky
  • 11
  • 3
0
votes
2 answers

Django RSS feed

I am trying to develop a simple site that: 1- Automatically fetch from my db the 5 latest entries. Entries are news headline titles that I input manually. 2- display these entries on a simple webpage (no fancy formatting or anything else) 3- The…
Rami_H
  • 401
  • 1
  • 4
  • 15
0
votes
3 answers

Different results for the same RSS feed fetching from different user agents

If I add a feed URL to Google Reader or to a desktop feed aggregator, I receive nice results. The URL is: http://estaticos03.marca.com/rss/futbol_1adivision.xml But when I fetch the same URL from a script (python script, using feedparser library) I…
nabucosound
  • 1,283
  • 1
  • 12
  • 23
0
votes
0 answers

How to Save BBC RSS Feed with Images url into Database?

I'm creating a asp.net website for showing up rss feed from BBC, I'm doing exactly as i want that i m showing the rss feed on asp:DataList but my problem is that i dont want to show feed directly from a XML document, i want to store it firstly to my…
Mujtaba
  • 349
  • 1
  • 4
  • 17
0
votes
2 answers

IBM WebSphere Portal V8.5 wcm library syndication

I have a WebSphere Portal Version 8.5 Cluster on AIX 7.1 with multiple Virtual Portals, working with managed pages and each Virtual Portal has it's own libraries and one shared library for all VPs using syndication of that library to each VP. i…
0
votes
1 answer

Drupal 8, modular content, and syndication

I am trying to sketch out a Drupal 8 based solution by which content is authored in a modular way, with an arbitrary number of different modular blocks of content, (similar to Sir Trevor https://madebymany.github.io/sir-trevor-js/) that would also…
jshwlkr
  • 335
  • 6
  • 18
0
votes
1 answer

How to mark "seen" RSS entries?

So I have played with the idea of making a specialized RSS-reader for some time now, but I have never gotten around to it. I have several project that could benefit from reading feeds in one way or another. One project for this is an RSS-bot for an…
Christian Wattengård
  • 5,543
  • 5
  • 30
  • 43
0
votes
2 answers

Hitting a default RSS or ATOM Path from WCF, Client Only

I'm trying to write a simple WCF Wrapper to load a SyndicationFeed as a client. Contract [ServiceContract] public interface IFeedService { [OperationContract] [WebGet(UriTemplate="")] SyndicationFeed GetFeed(); } Usage using (var cf =…
bendewey
  • 39,709
  • 13
  • 100
  • 125
0
votes
0 answers

SyndicationPerson not getting converted properly to RSS

I'm working on a site that converts articles into RSS using SyndicationItem. My problem is that the Authors (SyndicationPerson) is showing the email address only (if it exists) otherwise the name only as following: If email…
TamerM
  • 722
  • 7
  • 25