I receive the following error when trying to parse an atom feed. org.apache.abdera.parser.ParseException: java.lang.ArrayIndexOutOfBoundsException at org.apache.abdera.parser.stax.FOMParser.parse(FOMParser.java:128) at org.apache.abdera.util.AbstractParser.parse(AbstractParser.java:73) at testfeedreader.TestFeedReader.main(TestFeedReader.java:44) Caused by: java.lang.ArrayIndexOutOfBoundsException ....
Here is my code for the reader. I hard coded the url for testing:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package testfeedreader;
import java.io.IOException;
import java.net.URL;
import java.util.List;
import org.apache.abdera.Abdera;
import org.apache.abdera.model.Document;
import org.apache.abdera.model.Entry;
import org.apache.abdera.model.Feed;
import org.apache.abdera.model.Category;
import org.apache.abdera.model.Link;
import org.apache.abdera.parser.ParseException;
import org.apache.abdera.parser.Parser;
/**
*
* @author srieger
*/
public class TestFeedReader {
private static Abdera abdera = null;
/**
*
* @return
*/
public static synchronized Abdera getInstance() {
if (abdera == null) {
abdera = new Abdera();
}
return abdera;
}
public static void main(String[] args) {
Parser parser = getInstance().getParser();
try {
URL url = new URL("http://connect.lmsnet.com/files/basic/anonymous/api/documents/feed");
Document<Feed> doc = parser.parse(url.openStream(), url.toString());
Feed feed = doc.getRoot();
// Get the feed title
System.out.println("Feed Title: " + feed.getTitle());
// Get the entry items...
for (Entry entry : feed.getEntries()) {
System.out.println("Title: " + entry.getTitle());
System.out.println("Unique Identifier: " + entry.getId().toString());
System.out.println("Updated Date: " + entry.getUpdated().toString());
System.out.println("Published Date: " + entry.getPublished());
System.out.println("Content: " + entry.getContent());
// Get the links
for (Link link : (List<Link>) entry.getLinks()) {
System.out.println("Link: " + link.getHref());
}
// Get the categories
for (Category category : (List<Category>) entry.getCategories()) {
System.out.println("Category: " + category.getTerm());
}
}
} catch( IOException | ParseException e )
{
e.printStackTrace();
}
}
}
Based on discussion the answer is: code gets loging page as a response, therefore parsing error occurs.
Possibilities:
SSO configuration - study SBT SDK documentation and use SSO to authenticate.
Move your code to client side - so instead processing it in SSJS/Java in the background, use some widget and JS parsing to show required information to user. That way the call will be authenticated by user's identity in browser.