my java app needs to connect to the internet , I am behind a proxy server. i use the fallow functions to set proxy but it doesn't work?
System.getProperties().put("http.proxySet", "true");
System.getProperties().put("http.socksProxyHost", value);
System.getProperties().put("http.socksProxyPort", value);
thanks