I am developing an application which needs to accept Java Source code from the client via the Google Cloud Endpoints, and then the Google App Engine would work on it. The simplest solution was to send the Java Source Code as a String
from the JavaScript client and make an endpoint which accepts the String
. However a GET
request more than 2kB is giving errors and Source Codes can be (and are generally often) far larger than 2kB.
It will be important to note here that minification of the code is not allowed.
Then what should be the best way to achieve so?
An advanced thanks for trying to solve my issue.