Friday, 16 February 2007

proxy in your java applications



//Proxy port
String port="";

//Proxy host
String host="";

System.getProperties().put("proxySet","true");
System.getProperties().put("proxyPort",port);
System.getProperties().put("proxyHost",host);

0 comments: