Tagged Questions
0
votes
0answers
48 views
How to go about adding RSS/Atom feeds to my custom blog [closed]
I have a blog which I want to add RSS and/or Atom feeds to. It's 100% hand written outside of existing frameworks/CMS. As such, I can't just "use a wordpress plugin" and other such things I commonly ...
1
vote
1answer
120 views
How to generate ATOM and RSS2 feeds with ASP.NET Web API?
What steps are needed to adjust the default XML output of the ASP.NET Web API to generate ATOM and RSS2 feeds?
0
votes
0answers
175 views
VB.NET - SyndicationItem ElementExtensions - How do I get an element one level down and read its attributes?
In my ASP.NET / VB.NET website I am consuming an Atom 1.0 feed from YouTube:
<?xml version='1.0' encoding='UTF-8'?>
<feed xmlns='http://www.w3.org/2005/Atom' ...
0
votes
1answer
1k views
ASP.net c#. How do I parse an atom feed from a blog
The feed is at:
http://latestpackagingnews.blogspot.com/feeds/posts/default
The tags I want are:
<entry>
<published></published>
<title></title>
...
2
votes
2answers
486 views
Displaying RSS or ATOM content in ASP.NET ListView
I am having some trouble pulling RSS off of blogger page and publishing it on my own site. I am using SyndicationFeed to pull the data down and parse it. I am able to accomplish this but not without ...
2
votes
1answer
320 views
SyndicationItem Content and Summary property in ASP.NET 3.5
Correct me if I am wrong, but it appears that the SyndicationItem.Content is null some times based on the feed address. When it's null, SyndicationItem.Summary seems to have the text of the blog post.
...
0
votes
1answer
125 views
Intergrating ASP.net feed into twitter
I have a ready RSS atom feed on my ASP.net site,but I want to publish it through twitter how? and what it's requirment?
0
votes
2answers
173 views
Can I integrate many sources into one RSS reader?
I'm looking to integrate a bunch of RSS/ATOM sources into a feed for our intranet. This is outside my usual realm of work so I've had very limited exposure to this.
I'd like to integrate all the ...
1
vote
2answers
1k views
Why is my ATOM XML UTF-16 and not UTF-8
I have this code to create an ATOM feed
Dim xmlResult As New StringBuilder
Dim settings As New XmlWriterSettings
Dim atomWriter As XmlWriter = XmlWriter.Create(xmlResult, settings)
Dim atomFormatter ...
0
votes
1answer
355 views
Password protecting ATOM feeds
The Twitter ATOM feed requires your login and password (obviously), which is nicely supported by IE7 (apparently IE7 can't handle RSS feeds with login/pw). IE displays a simple login prompt when you ...
2
votes
1answer
2k views
An Easy Way to Consume a Twitter Search Feed With ASP.Net
Anyone have an pointers on an easy way to consume a search.twitter.com feed with ASP.Net? I tried using the RSSToolKit, but it doesn't provide anything for parsing the and other tags in the feed.
...
