Hello,
I have created a feed from a notes view with the RSS Feed generator database. I can access this feed with no problem with its address:
http://127.0.0.1/feeds10.nsf/rss?openagent&uid=6AA24FF0716AECF2C125760C003A63C2
My problem is when I try to access this feed from a notes java agent. THis is my code:
URL feedUrl = new URL(url);
System.out.println(“nach url”);
SyndFeedInput input = new SyndFeedInput();
XmlReader Reader = new XmlReader(feedUrl);
…
When I try to run this agent the http task hangs and when I shutdown the server I get the message:
13.08.2009 15:53:33 HTTP Server: Waiting for session to finish: Session State
[Processing Request] Session ID [2] Thread ID [4312 (0x10d8)] GET /DLR/DLRContMK
Dev50.nsf/getRSS?OpenAgent&url=http://127.0.0.1/feeds10.nsf/rss?openagent&uid=6A565656432
Can anybody help ?
CU Martin