0

RestfulWebサービスのクライアントを作成しています。

public static void main(String[] args){
        // Use apache commons-httpclient to create the request/response
        HttpClient client = new HttpClient();
        Credentials defaultcreds = new UsernamePasswordCredentials("aaa", "cdefg");
        client.getState().setCredentials(AuthScope.ANY, defaultcreds);


        GetMethod method = new GetMethod(
                "http://localhost:8080/userService/usersByID/1234");
        try {
            client.executeMethod(method);
            InputStream in = method.getResponseBodyAsStream();
            // Use dom4j to parse the response and print nicely to the output stream
            BufferedReader reader = new BufferedReader(new InputStreamReader(in));
            StringBuilder out = new StringBuilder();
            String line;
            while ((line = reader.readLine()) != null) {
                out.append(line);
            }
            System.out.println(out.toString());
        } catch (IOException e) {
            e.printStackTrace();
        } 
    }

不正なエラー401が発生します。サーバーログを確認したとき。私は以下を見つけました。

ERROR httpclient.HttpMethodDirector - Credentials cannot be used for NTLM authentication: org.apache.commons.httpclient.UsernamePasswordCredentials

そのため、これにはNTLM認証を使用する必要があることを理解しました。

NTLM認証を行うためにこれを変更する方法を教えてもらえますか。

前もって感謝します。

4

2 に答える 2

0

以下のリンクを確認してください

http://hc.apache.org/httpclient-3.x/authentication.html#NTLM http://davenport.sourceforge.net/ntlm.html

于 2013-01-15T12:34:41.587 に答える
-1

setCredentials の代わりに setProxyCredentials を使用してみてください。

client.getState().setProxyCredentials(AuthScope.ANY, defaultcreds);
于 2013-04-23T19:08:16.287 に答える