Hi all,  

http://code.google.com/appengine/docs/java/urlfetch/overview.html

>> You can set a deadline for a request, the most amount of time the service 
will wait for a response. By default, the deadline for a fetch is 5 seconds. 
The *maximum deadline is 10 seconds* for HTTP requests and 10 minutes for 
task queue and cron job requests. When using the URLConnection interface, 
the service uses the connection timeout (setConnectTimeout()) plus the read 
timeout (setReadTimeout()) as the deadline.

1. The document reads "*maximum deadline is 10 seconds"*, is this not 30s?
2. Can I set custom deadline to 60s by calling 
                        connection.setReadTimeout(60000);
connection.setConnectTimeout(60000);

Thanks, 

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/yTSNYKEk8vkJ.
To post to this group, send email to google-appengine-java@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