> Please note that currently NTLM proxies are not supported as they have not > been tested. > You may be able to use the relevant system properties on JDK 1.4+ to make > this work. > > ++> would be nice to know how? > > So what java system properties do I have to set to make JDK work and force to > use only BASIC authentication?
Googling for "java proxy system property ntlm" takes me to: http://download.oracle.com/javase/1.4.2/docs/guide/net/properties.html That page seems to cover what you're looking for. And here's a page with additional information for JDK6 (same search, a few links down in the list): http://download-llnw.oracle.com/javase/6/docs/technotes/guides/net/http-auth.html As for "forcing" basic auth, that seems to be the default unless you specify the http.auth.ntlm.domain or another property. But I am far from an expert in this area. You probably need to be setting http.proxyHost and http.proxyPort. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
