Make a project with web Api c # return an RSS

3

I need to have my project in rest WEB API return RSS instead of json or XML ... would you like to see if anyone has already managed to do it?

    
asked by anonymous 23.07.2014 / 01:40

1 answer

1

I was able to solve this tutorial link and adding the code below in Global.asax inside Application_Start:

GlobalConfiguration.Configuration.Formatters.Clear (); GlobalConfiguration.Configuration.Formatters.Add (new SyndicationFeedFormatter ());

14.10.2014 / 21:35