How can I configure my proxy settings to run my application without deploy on google servers?
I’m asking because I’m developing a feature that use another service on the Web, but I can’t access this service due proxy settings. The Java SDK on GoogleAppEngine doesn’t allow proxy.
In running GoogleAppEngine on my machine. And my machine is under a proxy.
I’m using Eclipse as IDE
In Java the proxy settings are usually applied at the JVM level, through the http.proxy* settings. See here: http://info4tech.wordpress.com/2007/05/04/java-http-proxy-settings/
Simplest thing to test would be to set your JAVA_OPTS=”-Dhttp.proxyHost=yourProxyURL …” and go from there…