I am trying to build a google app engine app in Java. The app is trying to get information from another site. On my computer I am behind a firewall and need to connect to the site through a proxy. Google app engine does not allow the use of java.net.proxy. Is there a way to configure eclipse so it knows that when I use URL.getContent() my local host will connect to that url through a proxy??
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Look at this thread issue, there's a patched jar that allows you to connect through a Proxy. |
|||
|
|
|
It seems there's no way to do this, at least with current release of the SDK. I've gone through suffering from this problem. The workaround is to make your system inherently aware of proxy. For example, use VPN, or use iptables to configure your proxy on Linux system. It seems when your use normal way to specify a proxy as with other Java application it will invoke a class not in the JRE white list of GAE/J. |
|||
|
|