Hi, I was trying to implement an RSS feed collector application on App Engine but now it seems unfeasible. >From the aspect of my app, executing CookieHandler.setDefault(new CookieManager(null, CookiePolicy.ACCEPT_ALL)); is vital because there are RSS feeds that can not be downloaded without this setting. Default CookieHandler simply does not work. However this line throws the following error: java.lang.NoClassDefFoundError: java.net.CookiePolicy is a restricted class. Please see the Google App Engine developer's guide for more details. Now my question is if there is a workaround (eg.: to accept all the cookies) or should I choose a hosting solution different than Google App Engine where this class is not blacklisted? I have tried to implement my own CookiePolicy interface instead of the built-in one, but it did not help. I also tried to find other ways to download RSS feeds but none of the other methods have worked. Bye, thanks for help: Szabolcs
-- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
