【发布时间】:2014-08-11 18:21:33
【问题描述】:
我正在创建一个与https://ws.conf.ebs.health.gov.on.ca:1440/HCVService/HCValidationService?wsdl 的 WSDL 交互的 SOAP 客户端
这是我第一次实现 SOAP 客户端,我正在使用 CXF
请求的时间戳格式有问题。
预期格式:2014-08-05T17:46:51Z
我的格式:2014-08-05T17:42:09.954Z
所以问题是,我该如何配置时间戳,以便删除尾随的亚秒?
非常感谢。
相关代码:
Map<String,Object> inProps= new HashMap<String,Object>();
WSS4JInInterceptor wssIn = new WSS4JInInterceptor(inProps);
cxfEndpoint.getInInterceptors().add(wssIn);
Map<String,Object> outProps = new HashMap<String,Object>();
WSS4JOutInterceptor wssOut = new WSS4JOutInterceptor(outProps);
cxfEndpoint.getOutInterceptors().add(wssOut);
outProps.put("action", "UsernameToken Timestamp Signature");
outProps.put("passwordType", WSConstants.PW_TEXT);
【问题讨论】: