Parse the RSS and set the scripting variables
try {
// parse the rss
rssInfo.parse(url);
// export the scripting variables
pageContext.setAttribute(NAME_ATTR, rssInfo.getChannelTitle());
pageContext.setAttribute(LINK_ATTR, rssInfo.getChannelLink());
} catch (Exception ex) {
throw new JspException("Unable to parse " + url, ex);
}
return Tag.EVAL_BODY_INCLUDE;