user448402
user448402

Reputation: 157

Google App Engine

I am currently getting request time out for my JSP application when I run it on google app engine. This is due to the 30 seconds respond time.

Since my application request takes some time, I discovered I am required to send multiple request to the servlet from the JSP page to resolve this issue of request time out.

Is there any way I could resolve this matter?

Thanks

Upvotes: 2

Views: 106

Answers (1)

Vladimir Prudnikov
Vladimir Prudnikov

Reputation: 7232

There is no way to increase 30 sec timeout. There is something wrong with the design if you application take such amount of time to process request. Try to play with TaskQueue API.

Upvotes: 1

Related Questions