We provided our GAE Servlet POST URL as Webhook to third party service that sends data. According to GAE - "Each incoming HTTP request can be no larger than 32MB."
Sometimes third party service sends data more than 40MB which gets rejected by GAE server as 'Request Too Large' error. The service retries continuously on the other end upto 100 times and blocks further requests until retries completed if webhook URL doesn't return a 200 HTTP response code.
Is it possible to handle such requests and send 200 HTTP response code with GAE?