• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Help aggregating Atom feeds using JSTL

 
Ranch Hand
Posts: 231
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello again,

I was running a webapp which aggregated feeds from an external website (which itself used an RSS file to publish content)

Now, I can't see anyone of them because the author of the website situated switched to Atom...

Here's the code I currently have (which worked when the website used RSS):



Now, the URL for the content is:

http://thewebsite.com/blog/blog.atom

As a result, on my webapp, nothing is published (it doesn't aggregate)

Is there a way to aggregate Atom feeds using JSTL?

Thanks for the help.
 
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Atom feeds are still xml so you'll just need to look at the atom XML and adjust your code accordingly.
reply
    Bookmark Topic Watch Topic
  • New Topic