[Delicious-java-discuss] Hi
Brought to you by:
czarneckid
From: Discussion l. f. delicious-j. <del...@li...> - 2008-09-23 08:33:38
|
I am facing a problem that is a little strange. Whe I iterate over some existing delicious accounts and call the method getAllPosts() I get the following exception: SEVERE: org.xml.sax.SAXParseException: The markup in the document preceding the root element must be well-formed. Exception in thread "main" del.icio.us.DeliciousException: Response parsing error at del.icio.us.Delicious.getAllPosts(Delicious.java:625) at delicious.DeliciousData.getAllPostDel(DeliciousData.java:71) My sample code is: for (int i = 1; i < 10; i++) { Delicious del = new Delicious("user_"+i, "password"); int numOfPost = del.getAllPosts().size(); } Am I doing something wrong ? Best, Fred Durão |