問題は、Glassfish で動作する REST サービスを Jersey で開発したことです。認証については、 Basic-Authenticationを実装し ました。クライアント側では、ApacheHTTPClientを介して Authentication を実装しました。
私の考えは、ログインのように、登録ユーザーが入力したときに認証を求めることです。これは、クライアント アプリケーション (ユーザーがログアウトするまで認証を有効に保つため) で構成されていますか、または基本認証を構成した REST サービスで構成されていますか?
ありがとう!
これは、クライアント アプリでログインを行う方法です。
import java.util.ArrayList;
import java.util.List;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.params.HttpConnectionParams;
import org.apache.http.util.EntityUtils;
public class UserLogin {
private static final String BASE_URI = "http://localhost:8080/LULServices/webresources";
public static void main(String[] args) throws Exception {
final DefaultHttpClient httpclient = new DefaultHttpClient();
try {
httpclient.getCredentialsProvider().setCredentials(
new AuthScope("localhost", 8080),
new UsernamePasswordCredentials("zzzzz", "xxxxx"));
HttpPut httpPut = new HttpPut(BASE_URI + "/services.users/login");
HttpConnectionParams.setConnectionTimeout(httpclient.getParams(), 10000);
httpPut.addHeader("Content-type", "multipart/form-data");
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("login", "zzzzz"));
nameValuePairs.add(new BasicNameValuePair("password","xxxxx"));
httpPut.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httpPut);
try {
System.out.println("Executing request " + httpPut.getRequestLine());
HttpEntity entity = response.getEntity();
System.out.println("----------------------------------------");
System.out.println("HTTP Status: " + response.getStatusLine());
String putResponse = EntityUtils.toString(entity);
System.out.println(putResponse);
EntityUtils.consume(entity);
} finally
httpPut.releaseConnection();
} finally
httpclient.getConnectionManager().shutdown();
}
}
ユーザーに彼の secret_id を返します。