CXF ClientProxy getClient“不是代理实例”

时间:2012-05-10 23:01:42

标签: java cxf wsdl2java

我正在尝试在我的Apache CXF客户端上使用WS-security。我需要掌握客户端端点,以便添加WSS4J拦截器。但是,当我致电ClientProxy.getClient()时,我收到IllegalArgumentException,其中包含以下消息:

  

不是代理实例

代码:

MailingService_ServiceLocator serviceLocator = new MailingService_ServiceLocator();
MailingService_PortType port = serviceLocator.getMailingServicePort();

Client client = ClientProxy.getClient(port);  // throws exception

...

// Create client interceptor
AuthenticationInterceptor authenticationInterceptor =
  new AuthenticationInterceptor(schemaNS, outprops, organizationName, null);

client.getEndpoint().getOutInterceptors().add(authenticationInterceptor);

跟踪:

java.lang.IllegalArgumentException: not a proxy instance
    at java.lang.reflect.Proxy.getInvocationHandler(Unknown Source)
    at org.apache.cxf.frontend.ClientProxy.getClient(ClientProxy.java:93)

1 个答案:

答案 0 :(得分:1)

事实证明我使用的是错误的代码生成工具。我使用的是org.codehaus.mojo axistools-maven-plugin,它为您提供了扩展java.rmi.Remote的服务。但是,我需要使用org.apache.cxf cxf-codegen-plugin,它为您提供了一个实现代理的服务。

新代码:

MailingService_Service mss = new MailingService_Service();
MailingService service = mss.getMailingServicePort();

ClientImpl client = (ClientImpl) ClientProxy.getClient(service);

新pom:

<plugins>
  <plugin>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-codegen-plugin</artifactId>
    <version>2.6.0</version>
    <executions>
      <execution>
    <id>generate-sources</id>
    <phase>generate-sources</phase>
    <configuration>
      <sourceRoot>${project.build.directory}/generated/cxf</sourceRoot>
      <wsdlOptions>
        <wsdlOption>
              <wsdl>${basedir}/src/main/wsdl/myWsdl.wsdl</wsdl>
            </wsdlOption>
      </wsdlOptions>
        </configuration>
    <goals>
      <goal>wsdl2java</goal>
    </goals>
      </execution>
    </executions>
  </plugin>
</plugins>