Hi FYI,
I am doing web crawling in my application using proxy setting. like the
below code..
Properties systemSettings = System.getProperties();
systemSettings.put("http.proxySet", "true");
systemSettings.put("http.proxyHost",
profileBean.getProfileParamBean().getProxyHost().trim());
systemSettings.put("http.proxyPort",
profileBean.getProfileParamBean().getProxyPort().trim());
System.setProperties(systemSettings);
This code working fine in Tomcat5.0 but I am getting runtime error in
Weblogic8.
How can I handle this problem???
Advance Thanks.
Regards,
Natarajan.