如何在Axis2客户端中正确使用WS-Addressing?

时间:2010-03-26 19:13:10

标签: java axis2 ws-addressing

全部,   我正在尝试编写一个在Axis2.1.5中调用Web服务客户端的Junit测试,我对如何将其设置为使用WS-Addressing感到困惑。

我使用wsdl2java生成了一个客户端存根,我正在使用来自axis2二进制分发的axis2.xml和modules存储库。

我知道我需要使用WS-Addressing的MemberSubmission版本,我认为我已经正确设置了(使用选项),但标题似乎没有得到生成正确。 (我说'似乎'因为我无法弄清楚SOAPMonitor模块是如何工作的 - 我也欢迎任何提示!)。

然而,我的主要困惑在于“参与”寻址模块究竟需要什么。是否足以使用具有对寻址模块的引用的axis2.xml文件来设置ConfigurationContext?像这样? :

//standard out of the box axis2 configs
 ConfigurationContext myConfigContext = ConfigurationContextFactory
   .createConfigurationContextFromFileSystem("C:/devapps/axis2-1.5.1/repository","C:/devapps/axis2-1.5.1/conf/axis2.xml");

  Options options = new Options();
  EndpointReference targetEPR = new EndpointReference(
    "https://host:port/service.asmx");

  options.setTo(targetEPR);

                //I believe this is what I'm supposed to do to specify the 
  //MemberSubmission version of WS-Addressing
  options.setProperty(AddressingConstants.WS_ADDRESSING_VERSION,
    AddressingConstants.Submission.WSA_NAMESPACE);
  //No idea of this is needed or not.
  options.setProperty(AddressingConstants.INCLUDE_OPTIONAL_HEADERS,
    Boolean.TRUE);
  options.activate(myConfigContext);
  options.setAction("someAction");

  CaseDetailsServiceStub stub = new CaseDetailsServiceStub(
    "https://host:port/service.asmx");
  stub._getServiceClient().setOptions(options);

  //I'm calling this from a Junit test
  assertNotNull(stub.someAction(someParam));

使用上面的选项设置,在日志文件中看到模块从axis2.xml加载:

[INFO] Deploying module: addressing-1.5.1 - file:/C:/devapps/axis2-1.5.1/repository/modules/addressing-1.5.1.mar

但我认为我没有得到任何寻址标头。我此时从服务器返回的错误说:

  

标题   http://schemas.xmlsoap.org/ws/2004/08/addressing:Action   最终收件人是必需的但是   不在消息中。

所以,我也看到一些文档引用了“引人入胜”的模块。当我尝试将此行添加到我的代码中并将addressing-1.5.1.mar添加到我的类路径时,但是:

stub._getServiceClient().engageModule("addressing");

我收到错误消息:

无法使用模块:寻址 org.apache.axis2.AxisFault:无法使用模块:soapmonitor  在org.apache.axis2.client.ServiceClient.engageModule(ServiceClient.java:358)

在日志之外没有其他信息或堆栈跟踪,但是,所以我很困惑。

关于我做错的任何想法?

3 个答案:

答案 0 :(得分:7)

将addressign.mar和sopamoniter.mar放入项目的lib或classpath中。 这个对我有用 从轴2套件中找到mar;

答案 1 :(得分:2)

在我的Maven项目中,我不得不声明对org.apache.axis2:addressing工件的额外依赖:

<dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>addressing</artifactId>
    <version>1.6.2</version>
    <classifier>classpath-module</classifier>
</dependency>
MyServiceStub stub = new MyServiceStub(targetEndpoint);
stub._getServiceClient().engageModule("addressing");

但我没有看到SoapMonitor on Maven Central的任何classpath-module工件。

答案 2 :(得分:0)

地址可以直接添加到 Soap Header 中。

SOAPHeader soapHeader = soapEnvelope.getHeader();
soapHeader.declareNamespace("http://www.w3.org/2005/08/addressing", "wsa");