I am using httpclient 3 with MultiThreadedHttpConnectionManager
if i connect once to a site with valid credentials and then connect again with invalid credentials, the second connection surprisingly works, I am assuming this is because the connection manager uses a pooled connection and does not reauthenticate already authenticated hosts.
but i want httpclient to fail if i provide invalid credetials, how do i do that?
this is part of how i use httpclient: //run on each call
HttpClient httpClient = new HttpClient(getMultiThreadedHttpConnectionManagerSingleton());
....
httpClient.getState().setCredentials(
authscope,
new NTCredentials(
ntlmCredentials.getUsername(),//here i give wrong creds on the second attempt
ntlmCredentials.getPassword(),
localHostName, ntlmCredentials.getDomain()));