cxf-codegen-plugin を使用してクライアント クラスを生成しました。
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>2.7.4</version>
<executions>
<execution>
<goals>
<goal>wsdl2java</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<wsdlOptions>
<wsdlOption>
<wsdlArtifact>
<groupId>webservices</groupId>
<artifactId>ws-dosomething</artifactId>
<version>1.0-SNAPSHOT</version>
</wsdlArtifact>
</wsdlOption>
</wsdlOptions>
</configuration>
</execution>
</executions>
</plugin>
「webservices:ws-something:1.0-SNAPSHOT:wsdl」に添付されたポリシーが、生成されたクラスに見つからないことがわかりました。クライアントを使用してリクエストを送信する場合:
<cxf:bus>
<cxf:features>
<p:policies />
</cxf:features>
</cxf:bus>
<jaxws:client id="DoSomethingService" address="http://localhost/cxf/services/dosomething" serviceClass="webservices.dosomething.DoSomethingService">
<jaxws:properties>
<entry key="ws-security.signature.properties" value="crypto.properties" />
<entry key="ws-security.callback-handler" value="webservices.dosomething.WSPasswordProvider" />
</jaxws:properties>
</jaxws:client>
、サーバーは文句を言います:
org.apache.cxf.interceptor.Fault: These policy alternatives can not be satisfied:
{http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702}AsymmetricBinding: Received Timestamp does not match the requirements
{http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702}X509Token: The received token does not match the token inclusion requirement
{http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702}X509Token
{http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702}InitiatorToken
{http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702}RecipientToken
{http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702}IncludeTimestamp: Received Timestamp does not match the requirements
{http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702}SignedParts: {http://schemas.xmlsoap.org/soap/envelope/}Body not SIGNED
JAX-WS アノテーションはクライアント クラスに存在しますが、「@Policies」や「@Policy」などの Apache CXF アノテーションはありません。
それは正常ですか?クライアント側でポリシーを適用するにはどうすればよいですか?