NTLMv2 HTTP Authentication Java
I'm very confused on how this is supposed to work. I've tried using something like this: con = (HttpURLConnection) url2.openConnection(); con.setReadTimeout(10000); con.setInstanceFollowRedirects(true); con.setAllowUserInteraction(true); con.setDoOutput(true); con.setDoInput(true); Authenticator.setDefaul...