first of all I would like to apologize for the written form but I do not speak fluent English and I am using google translator. I have a project (Webservices) in the glcoud console using the app engine, when this project receives requests through clients with 4G connection the server starts to display error "Error: Server Error The server encountered a temporary error and could not complete your request. Please try again in 30 seconds. " When the same clients make requests via wifi or 3G the app engine works normally, my ambience of the app engine is the flex I do not use balancer http configured. What could be happening?
Asked
Active
Viewed 259 times
0
-
Are language are you using Python/Java/...? – Pawel Czuczwara Jul 24 '19 at 08:49
1 Answers
0
It can be:
Networking issue:
This kind of difference with mobile/desktop is often related to IPv6. It is possible that your app is trying to parse the user's IP address and assuming it's IPv4, so it fails from IPv6 clients? We could test it knowing the URL of your app.
What zone is your server deployed?
- Is it permanent error response on 4G or only occurs sometimes?
- Or error in the code from your app.
To make sure the error is NOT in your application, please try to deploy the sample HelloWorld application as described in the quickstart.
If that works correctly it means you have problem with your code:
You can start debugging your own code. You can check the logs in Stackdriver and take a look at the App Engine dashboard. Additionally, you can try Stackdriver Debugger for a closer look at the code.

Pawel Czuczwara
- 176
- 3