entry.description causes fault.
-------------------------------
Key: MASHUP-778
URL: https://wso2.org/jira/browse/MASHUP-778
Project: WSO2 Mashup Server
Issue Type: Bug
Reporter: Jonathan Marsh
Assignee: Channa Gunawardena
This succeeds (because there is a description element in the feed):
function getJonathansFeed() {
var url = "http://auburnmarshes.spaces.live.com/feed.rss";
var reader = new FeedReader();
var feed = reader.get(url);
return feed.getEntries()[0].description;
}
This faults (because there is NO description element in the feed):
function getSanjivasFeed() {
var url = "http://sanjiva.weerawarana.org/feeds/posts/default";
var reader = new FeedReader();
var feed = reader.get(url);
return feed.getEntries()[0].description;
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://wso2.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
_______________________________________________
Mashup-dev mailing list
[email protected]
http://www.wso2.org/cgi-bin/mailman/listinfo/mashup-dev