完全認証が必要な Android から Web サービスにアクセスしようとしています。この目的のために、基本的な http 認証を使用しています。
UserNamePasswordCredentials を設定し、HttpGet リクエストでヘッダーを設定しようとしましたが、すべて同じです。私が間違っていることを教えてください。
HttpGet リクエストでヘッダーを設定するために使用しているコード:
HttpGet requestLogin = new HttpGet(url);
requestLogin.addHeader("Authorization", "Basic " + Base64.encodeToString((username+":"+password).getBytes(), Base64.NO_WRAP));
UserNamePassword 資格情報を設定するために使用しているコード:
DefaultHttpClient httpClient = new DefaultHttpClient(mgr, tempClient.getParams());
httpClient.getCredentialsProvider().setCredentials(
AuthScope.ANY,
new UsernamePasswordCredentials(username,password));
これは、このコードの使用中に発生する例外です:
05-26 17:21:22.234: E/res(1651): <html><head><title>Apache Tomcat/6.0.35 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 401 - Bad credentials</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>Bad credentials</u></p><p><b>description</b> <u>This request requires HTTP authentication (Bad credentials).</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/6.0.35</h3></body></html>
ブラウザでこれらの同じ資格情報を使用すると、機能します。したがって、資格情報は正しくありません。私が間違っていることを教えてください。私はそれに完全に行き詰まっています。
前もって感謝します。