2017-04-26 3 views
1

ntlm Auth Scheme을 사용하여 http 클라이언트를 사용하여 서버에서 pdf 파일을 다운로드하려고합니다.유효한 자격 증명이 제공되지 않음 (메커니즘 수준 : 유효한 자격 증명이 제공되지 않음) (메커니즘 수준 : Kerberos tgt를 찾지 못했습니다.) httpclient

하지만 아래 오류가 발생합니다. 이 파일은 사용자 이름과 암호를 매개 변수로 사용하여 wget을 사용할 때 다운로드되지만 동일한 사용자 이름과 암호를 사용하면 Java 코드를 사용하여 401과 함께 실패합니다. httpclient 4.2.2를 사용하고 있습니다.

Authentication error: No valid credentials provided (Mechanism level: No valid credentials provided 
(Mechanism level: Failed to find any Kerberos tgt)) 

다음은 auth를 사용하여 pdf를 다운로드하는 코드입니다.

public ByteArrayOutputStream getFile1(String resourceURL) throws CRMBusinessException { 
DefaultHttpClient httpclient = new DefaultHttpClient(); 
ByteArrayOutputStream tmpOut = null; 
try { 
    ICRMConfigCache cache = CacheUtil.getCRMConfigCache(); 
    String host = cache.getConfigValue(ConfigEnum.DOCUMENT_SOURCE_HOST_NAME.toString()); 
    String user = cache.getConfigValue(ConfigEnum.HTTP_USER_NAME.toString()); 
    String password = cache.getConfigValue(ConfigEnum.HTTP_PASSWORD.toString()); 
    String workstation = cache.getConfigValue(ConfigEnum.CLIENT_HOST_NAME.toString()); 

    // Prerequisites 
    PreCondition.checkEmptyString(resourceURL, "'resourceURL' cannot be empty or null"); 
    PreCondition.checkEmptyString(host, ConfigEnum.DOCUMENT_SOURCE_HOST_NAME + " property is not set in database"); 
    PreCondition.checkEmptyString(user, ConfigEnum.HTTP_USER_NAME + " property is not set in database"); 
    PreCondition.checkEmptyString(password, ConfigEnum.HTTP_PASSWORD + " property is not set in database"); 
    PreCondition.checkEmptyString(workstation, ConfigEnum.CLIENT_HOST_NAME + " property is not set in database"); 

    // NTLM authentication across all hosts and ports 
    httpclient.getCredentialsProvider().setCredentials(
     new AuthScope(host, AuthScope.ANY_PORT, AuthScope.ANY_HOST), 
     new NTCredentials(user, password, workstation, MY_DOMAIN)); 

    httpclient.getAuthSchemes().register("ntlm", new NTLMSchemeFactory()); 

    // Execute the GET request 
    HttpGet httpget = new HttpGet(resourceURL); 

    HttpResponse httpresponse = httpclient.execute(httpget); 
    if (httpresponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK) { 
tmpOut = new ByteArrayOutputStream(); 
    InputStream in = httpresponse.getEntity().getContent(); 
    byte[] buf = new byte[1024]; 
    int len; 
    while (true) { 
     len = in.read(buf); 
     if (len == -1) { 
     break; 
     } 
     tmpOut.write(buf, 0, len); 
    } 
    tmpOut.close(); 
    } 

    aLog.debug("IntranetFileDownloaderImpl - getFile - End - " + resourceURL); 
    return tmpOut; 
} catch (Exception e) { 
    aLog.error("IntranetFileDownloaderImpl - getFile - Error while downloading " + resourceURL + "[" + e.getMessage() + "]", e); 
    throw new CRMBusinessException(e); 
} finally { 
    httpclient.getConnectionManager().shutdown(); 
} 
} 

httpclient를 사용하는 중에 누가 이런 종류의 문제에 직면 했습니까? "Kerberos tgt를 찾지 못했습니다"란 의미는 무엇입니까? 아무도 그것에 대한 단서가 있습니까?

답변

0

아래의 코드는 http 클라이언트 버전 4.2.2에서 저에게 잘 돌아갔습니다.

DefaultHttpClient httpclient = new DefaultHttpClient(); 
    HttpContext localContext = new BasicHttpContext(); 
    HttpGet httpget = new HttpGet("url"); 
    CredentialsProvider credsProvider = new BasicCredentialsProvider(); 
    credsProvider.setCredentials(AuthScope.ANY, 
      new NTCredentials("username", "pwd", "", "domain")); 
       List<String> authtypes = new ArrayList<String>(); 
     authtypes.add(AuthPolicy.NTLM);  
     httpclient.getParams().setParameter(AuthPNames.TARGET_AUTH_PREF,authtypes); 

    localContext.setAttribute(ClientContext.CREDS_PROVIDER, credsProvider); 
    HttpResponse response = httpclient.execute(httpget, localContext); 
    HttpEntity entity=response.getEntity(); 
+0

NTCredentials 생성자의 마지막 두 인수 인 워크 스테이션 및 domani의 의미는 무엇입니까? –