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

标签 java axis2 ws-addressing

全部, 我正在尝试编写调用 Axis2.1.5 中的 Web 服务客户端的 Junit 测试,但我对如何准确设置它以使用 WS-Addressing 感到困惑。

我已经使用 wsdl2java 生成了一个客户端 stub ,并且我正在使用 axis2.xml 和来自 axis2 二进制分发版的模块存储库。

我知道我需要使用 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

但我认为我没有收到任何寻址 header 。此时我从服务器返回的错误是:

Header http://schemas.xmlsoap.org/ws/2004/08/addressing:Action for ultimate recipient is required but not present in the message.

因此,我还看到一些文档提到了“吸引人的”模块。但是,当我尝试将此行添加到我的代码并将 addressing-1.5.1.mar 添加到我的类路径时:

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

我收到一条错误消息:

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

不过,日志中没有其他信息或堆栈跟踪,所以我很困惑。

对我做错了什么有什么想法吗?

最佳答案

将 addressign.mar 和 sopamoniter.mar 放入项目的 lib 或类路径中。 这个对我有用 从 axis2 套件中找到 mar

关于java - 如何在 Axis2 客户端中正确使用 WS-Addressing?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2526012/

相关文章:

wsdl2java 客户端 stub 仅用于 wsdl 支持的某些操作?

java - Uber/v1/payment-methods - 给出错误 "Unauthorized"且可用范围为空

java - 是什么导致异常中的递归原因?

java - Apache Axis2/Rampart + Maven

java - 在 Java 中测试 SOAP Web 服务

c# - 为什么wsa是:To header in my reply message removed by WCF?

java - 如何启用 cxf xml 中的寻址功能?

wcf - 如何在 WCF 中使用 WS-Addressing 并设置 wsa :replyto header?

java - ConcurrentHashMap 和 Collections.synchronizedMap(Map) 有什么区别?

Java 枚举常量