On Tue, Jan 28, 2014 at 2:01 PM, Julio Pemau <[email protected]> wrote: > java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 > at java.util.ArrayList.RangeCheck(ArrayList.java:547) > at java.util.ArrayList.get(ArrayList.java:322) > at > org.dspace.app.oai.DSpaceOAICatalog.getRecord(DSpaceOAICatalog.java:405)
This seems to be the problem alright. But I can't pinpoint exactly which line of code causes it, the mentioned line in DSpace 1.6.2 source is just a closing bracket: https://github.com/DSpace/DSpace/blob/dspace-1.6.2/dspace-oai/dspace-oai-api/src/main/java/org/dspace/app/oai/DSpaceOAICatalog.java#L405 Perhaps you have slightly customized this file, which shifts the line numbers, or you're using a different version than 1.6.2. The error itself says that you're trying to access an index 0 in an array, but the array doesn't contain it. What this exactly means depends on what that array is. Regards, ~~helix84 Compulsory reading: DSpace Mailing List Etiquette https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette ------------------------------------------------------------------------------ WatchGuard Dimension instantly turns raw network data into actionable security intelligence. It gives you real-time visual feedback on key security issues and trends. Skip the complicated setup - simply import a virtual appliance and go from zero to informed in seconds. http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

