如何在 Axis2 客户端中正确使用 WS-Addressing?
Posted
技术标签:
【中文标题】如何在 Axis2 客户端中正确使用 WS-Addressing?【英文标题】:How do I use WS-Addressing properly in an Axis2 client? 【发布时间】:2011-02-01 07:57:49 【问题描述】:所有, 我正在尝试编写一个调用 Axis2.1.5 中的 Web 服务客户端的 Junit 测试,但我对如何将其设置为使用 WS-Addressing 感到困惑。
我已经使用 wsdl2java 生成了一个客户端存根,并且我正在使用来自 axis2 二进制发行版的 axis2.xml 和模块存储库。
我知道我需要使用 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)
不过,日志中没有其他信息或堆栈跟踪,所以我很困惑。
关于我做错了什么有什么想法吗?
【问题讨论】:
感谢您提出这个问题,它对我帮助很大。对于可能将此代码用作示例的人,我想指出 elduff 使用了 WSA 命名空间的提交版本。最终命名空间可通过 AddressingConstants.Final.WSA_NAMESPACE 获得。当我尝试使用 Axis 2 1.5.1 为 JAX-WS 2.1 (Metro) 服务器创建客户端时,这与我有关。并且客户一直抱怨缺少 WSA 标头。问题是由于在客户端使用 Submission.WSA_NAMESPACE 而服务器使用 Final.WSA_NAMESPACE 引起的。 【参考方案1】:将 addressign.mar 和 sopamoniter.mar 放入项目的 lib 或类路径中。 这个对我有用 从axis2套件中找到mar
【讨论】:
嗨,Deepak,您能告诉我您在哪个操作系统中进行了此修复吗?我在 Linux 操作系统(测试环境)中遇到了这个问题,而不是在 Windows(开发环境)中【参考方案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
工件。
【讨论】:
【参考方案3】:地址可以直接添加到Soap Header中。
SOAPHeader soapHeader = soapEnvelope.getHeader();
soapHeader.declareNamespace("http://www.w3.org/2005/08/addressing", "wsa");
【讨论】:
以上是关于如何在 Axis2 客户端中正确使用 WS-Addressing?的主要内容,如果未能解决你的问题,请参考以下文章