JerseyクライアントAPIを使用してSOAPリクエストをJAX-WS Webサービスに送信します。デフォルトでは、Jerseyはチャレンジ時に認証にWindows Ntクレデンシャルを使用します。コード内で?そしてオーバーライドできますか?
HTTPBasicAuthFilterを使用して、クライアントにフィルターとして追加しようとしました。また、WebResoruce queryParamsフィールドに資格情報を追加しようとしましたが、どちらも取得されていません。
最初は、Jerseyユーザーガイドに記載されているとおりに動作しました。
Authenticator.setDefault (authinstance);
しかし、グローバル認証システムの設定に依存しているため、私はこれが好きではありませんでした。いくつかの調査の後、Jerseyにはさらに使いやすいHTTPBasicAuthFilter
があることがわかりました。
Client c = Client.create();
c.addFilter(new HTTPBasicAuthFilter(user, password));
参照: https://jersey.github.io/nonav/apidocs/1.10/jersey/com/Sun/jersey/api/client/filter/HTTPBasicAuthFilter.htmlhttps:// jersey.github.io/nonav/apidocs/1.10/jersey/com/Sun/jersey/api/client/filter/Filterable.html#addFilter(com.Sun.jersey.api.client.filter.ClientFilter)
ジャージー2.x:
HttpAuthenticationFeature feature = HttpAuthenticationFeature.basicBuilder()
.nonPreemptive()
.credentials("user", "password")
.build();
ClientConfig clientConfig = new ClientConfig();
clientConfig.register(feature) ;
Client client = ClientBuilder.newClient(clientConfig);
Jerseyユーザーガイドには クライアント認証 についての小さなセクションがあります。そのアドバイスに従い、HttpURLConnectionの代わりに Apache HTTP Client を使用することをお勧めします。
ジャージーの古いバージョンの回答を見つけ続けているので、この回答を追加します。これは、2.xには関係ありません。
Jersey 2にはいくつかの方法があります。を見てみましょう:
org.glassfish.jersey.client.authentication.HttpAuthenticationFeatureのJavaDoc
ここに私のために働いているものがあります(最も単純な基本的な私見)。
ClientConfig config = new ClientConfig();
HttpAuthenticationFeature feature = HttpAuthenticationFeature.basic("username", "password");
Client client = ClientBuilder.newClient(config);
client.register(feature);
WebTarget webTarget = client.target("http://api.asite.com/api").path("v1/reports/list");
Invocation.Builder invocationBuilder = webTarget.request(MediaType.TEXT_PLAIN_TYPE);
Response response = invocationBuilder.get();
System.out.println( response.getStatus() );
System.out.println( response.readEntity(String.class) );
Dropwizardアプリケーションをテストしている場合(おそらく、RESTサービス)に適しています)、これを例として使用できます。 https://github.com/dropwizard/dropwizard/blob /v0.8.1/dropwizard-auth/src/test/Java/io/dropwizard/auth/basic/BasicAuthProviderTest.Java
はい、jersey 2.xの場合、これを行うと、基本認証(プリエンプティブモード)で各リクエストを認証できます。
client.register(HttpAuthenticationFeature.basic(userName, password));
// rest invocation code ..
SSLを使用しない次の作業コードを見つけてください
Post/getを変更するだけなら、私はput requestを使用しています。
pom.xml
<project xmlns="http://maven.Apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.Apache.org/POM/4.0.0 http://maven.Apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.javacodegeeks.enterprise.rest.jersey</groupId>
<artifactId>JerseyJSONExample</artifactId>
<version>0.0.1-SNAPSHOT</version>
<repositories>
<repository>
<id>maven2-repository.Java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.Java.net/maven/2/</url>
<layout>default</layout>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.Sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
<version>1.9</version>
</dependency>
<dependency>
<groupId>com.Sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
<version>1.9</version>
</dependency>
<dependency>
<groupId>com.Sun.jersey</groupId>
<artifactId>jersey-json</artifactId>
<version>1.9</version>
</dependency>
</dependencies>
</project>
Javaクラス
package com.rest.jersey.jerseyclient;
import com.rest.jersey.dto.Employee;
import com.Sun.jersey.api.client.Client;
import com.Sun.jersey.api.client.ClientResponse;
import com.Sun.jersey.api.client.WebResource;
import com.Sun.jersey.api.client.config.ClientConfig;
import com.Sun.jersey.api.client.config.DefaultClientConfig;
import com.Sun.jersey.api.client.filter.HTTPBasicAuthFilter;
import com.Sun.jersey.api.client.filter.LoggingFilter;
import com.Sun.jersey.api.json.JSONConfiguration;
public class JerseyClient {
public static void main(String[] args) {
try {
String username = "username";
String password = "p@ssword";
//{"userId":"12345","name ":"Viquar","surname":"Khan","email":"[email protected]"}
Employee employee = new Employee("Viquar", "Khan", "[email protected]");
ClientConfig clientConfig = new DefaultClientConfig();
clientConfig.getFeatures().put( JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE);
Client client = Client.create(clientConfig);
//
final HTTPBasicAuthFilter authFilter = new HTTPBasicAuthFilter(username, password);
client.addFilter(authFilter);
client.addFilter(new LoggingFilter());
//
WebResource webResource = client
.resource("http://localhost:7001/VaquarKhanWeb/employee/api/v1/informations");
ClientResponse response = webResource.accept("application/json")
.type("application/json").put(ClientResponse.class, employee);
if (response.getStatus() != 200) {
throw new RuntimeException("Failed : HTTP error code : "
+ response.getStatus());
}
String output = response.getEntity(String.class);
System.out.println("Server response .... \n");
System.out.println(output);
} catch (Exception e) {
e.printStackTrace();
}
}
}
ポジョ
package com.rest.jersey.dto;
public class Employee {
private String name;
private String surname;
private String email;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getSurname() {
return surname;
}
public void setSurname(String surname) {
this.surname = surname;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
@Override
public String toString() {
return "Employee [name=" + name + ", surname=" + surname + ", email=" + email + "]";
}
public Employee(String name, String surname, String email) {
super();
this.name = name;
this.surname = surname;
this.email = email;
}
}