I'm using the XMLReader to read a feed like below.

URLConnection urlConnection = url.openConnection();
XmlReader reader = new XmlReader(urlConnection);

When this is called I receive within 5 seconds an IOException "Timeout
while fetching"

I also tried to set the timeouts but still no luck.
urlConnection.setReadTimeout(10000);
urlConnection.setConnectTimeout(10000);

Seems to be the size of the feed to read. When I call a smaller feed
it works properly. Is there any workaround or solution?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to