[appengine-java] Re: java.net.SocketTimeoutException: Timeout while fetching

2011-08-29 Thread Nischal
I don't know if this might be useful.. but I once got socket timeouts 100% of the time and realized this was my mistake: http://www.example.com?param1=xxx Changing to this fixed it!! http://www.example.com/?param1=xxx Do you see the / after .com, if you aren't doing that try doing it. --

[appengine-java] Re: java.net.SocketTimeoutException: Timeout while fetching

2011-08-26 Thread Ji
i wonder you resolve the issue. I am having the similar problem. on my app engine. one servlet gets data and post data as multipart/form- data to answer servlet. the form contain very small zip file that I am generating in fly. whever, receiver servlet tried to read file content, i am getting

[appengine-java] Re: java.net.SocketTimeoutException: Timeout while fetching

2011-08-19 Thread Luke
application B is real gwt application. application A is use to crawl application B. if the page content is minimum then no timeout. but when the content is lot then it timeout 99% of the time. can google team set sockettimeout longer or dont set timeout for users that enabled billing? -- You

Re: [appengine-java] Re: java.net.SocketTimeoutException: Timeout while fetching

2011-08-18 Thread Ikai Lan (Google)
Oh, so you have two applications? What is application B doing that might timeout? Does it timeout 100% of the time or just sometimes? -- Ikai Lan Developer Programs Engineer, Google App Engine plus.ikailan.com | twitter.com/ikai On Wed, Aug 17, 2011 at 9:32 AM, Luke travalle...@gmail.com

[appengine-java] Re: java.net.SocketTimeoutException: Timeout while fetching

2011-08-17 Thread Luke
yes. after enable threadsafetrue/threadsafe , still getting java.net.SocketTimeoutException: Timeout while fetching my applicationA is crawler with HTMLUnit, in appengine, it is uses to crawl applicationB inside appengine as well. I only need to enable always on for applicationA only right? --