3

https 投稿を介してサーバーにファイルをアップロードするクライアントがあります。プロキシを使用し、これが私のコードです

public void upload() throws Exception {

    //create default client
    DefaultHttpClient client = new DefaultHttpClient();

    //set proxy authentication if specified
    if (proxy.equals("yes") && proxyAuth.equals("yes")){
    client.getCredentialsProvider().setCredentials(
            new AuthScope(address, port),
            new UsernamePasswordCredentials(proxyUsername, proxyPassword));
    }

    //set proxy if specified
    if (proxy.equals("yes")){
        HttpHost proxy = new HttpHost(address, port);
        client.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY,proxy);
    }

    HttpPost post = new HttpPost(url);
    MultipartEntity entity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);

    File dir = new File(inputFilePath);
    File[] fileArray = dir.listFiles(); 
    File file = fileArray[0];

    FileBody uploadFilePart = new FileBody(file);

    entity.addPart("file", uploadFilePart);
    entity.addPart("username", new StringBody(username));
    entity.addPart("password", new StringBody(password));

    post.setEntity(entity);

    //execute post and get response
    String response = EntityUtils.toString(client.execute(post).getEntity(), "UTF-8");

    client.getConnectionManager().shutdown();

    log4j.info(response);

    if(!response.substring(0, 3).equalsIgnoreCase("200")){
        Exception e = new Exception("An error has occurred server side: ");
        throw e;
    }
}

問題は、これが完全に機能する場合と、以下のエラーが発生する場合があることです。

org.apache.http.impl.client.AbstractAuthenticationHandler.selectScheme(AbstractAuthenticationHandler.java:149) - 認証スキーム ntlm はサポートされていません"

4

2 に答える 2

4

http://hc.apache.org/httpcomponents-client-ga/ntlm.htmlで説明されているように、NTLM ハンドラーを登録する必要があります。

client.getAuthSchemes().register("ntlm", new NTLMSchemeFactory());
于 2012-10-04T11:59:12.167 に答える
2

試してください - これの代わりに: new UsernamePasswordCredentials(proxyUsername, proxyPassword)

これを使用します: new NTCredentials(proxyUsername, proxyPassword, "localhostname", "domain")

于 2015-10-20T16:04:04.617 に答える