Getting an error trying to parse an atom feed from connections using abdera

787 Views Asked by At

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();
        }
    }
}
2

There are 2 best solutions below

6
On

Based on discussion the answer is: code gets loging page as a response, therefore parsing error occurs.

Possibilities:

  1. SSO configuration - study SBT SDK documentation and use SSO to authenticate.

  2. 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.

0
On

apache abdera uses org.apache.axiom lib, so use that as a dependency in pom file. you can check it using another catch block It'll throw NoClassDefFoundError. this answer for help people who are looking at this.