Hi everyone, I'm using the URL Fetch api to connect to webservice in my app. When configuring the connection, I'm doing this : HttpURLConnection conn = ... conn.setConnectTimeout(60000); conn.setReadTimeout(0); A timeout of 0 is infinite with the standard HttpURLConnection of Java, but how is it used in appengine ?
Doc say the timeout use is the connect timeout + the read timeout. So, is it 60000+0 = 60s, or 60000+infinite = max timeout = 60s ? If I set the connect timeout to 40000 and the read timeout to 0, the total timeout is 40s or 60s ? Thanks, Mathieu -- 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/-/jlrFMB30WVUJ. 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.