Hello,
JPPF doesn't have any specific handling for proxies, however you should be able to set the proxy information at the JVM level, as described in the
Java Networking and Proxies documentation (section "2.4 Socks"):
-DsocksProxyHost=<host> for the host name of the SOCKS proxy server
-DsocksProxyPort=<port> for the port number, the default value being 1080
In a JPPF node, you would set this in the node's configuration file in the "jppf.jvm.options" property, for example:
jppf.jvm.options = -Xmx512m -DsocksProxyHost=www.myhost.com -DsocksProxyPort=1080Can you try this and let us know if it works for you?
Sincerely,
-Laurent