使用Wss4jSecurityInterceptor和Java的SOAP WS-Addressing属性

时间:2017-03-22 06:12:08

标签: java web-services soap soap-client ws-addressing

您好我创建了使用SOAP服务的代码,

对于Authentication Header,我使用Wss4jSecurityInterceptor来设置Header信息。

我得到的失败回应如下

 Exception in thread "main" org.springframework.ws.soap.client.SoapFaultClientException: Required element {http://www.w3.org/2005/08/addressing}Action is missing

我的配置代码如下

@Configuration
public class SoapClientConfig {

    @Bean
    public Jaxb2Marshaller marshaller() {
        Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
        marshaller.setContextPath("com.xyz.client");
        marshaller.setCheckForXmlRootElement(false);
        return marshaller;
    }

    @Bean
    public MyClient myClient(Jaxb2Marshaller marshaller) throws Exception {
        MyClient client = new MyClient();
        client.setDefaultUri("https://localhost:8080/ws/service");
        client.setMarshaller(marshaller);
        client.setUnmarshaller(marshaller);

        ClientInterceptor[] interceptors = new ClientInterceptor[] {securityInterceptor()};

        client.setInterceptors(interceptors);
        return client;
    }

    @Bean
    public Wss4jSecurityInterceptor securityInterceptor() {
        Wss4jSecurityInterceptor wss4jSecurityInterceptor = new Wss4jSecurityInterceptor();
        wss4jSecurityInterceptor.setSecurementActions("UsernameToken");
        wss4jSecurityInterceptor.setSecurementMustUnderstand(true);
        wss4jSecurityInterceptor.setSecurementPasswordType("PasswordText");
        wss4jSecurityInterceptor.setSecurementUsername("XXXXXXXXXXX");
        wss4jSecurityInterceptor.setSecurementPassword("XXXXXXXX");
        return wss4jSecurityInterceptor;
    }
}

任何人都可以建议我缺少什么吗?

如果我从SOAPUI尝试它的工作正常。如果我从SOAPUI设置WS-Addressing = false也给我同样的错误,那么使用上面的代码设置WS-Addressing属性的问题。我怎么能?

2 个答案:

答案 0 :(得分:5)

您是否使用WebServiceTemplate发送请求?如果是,您可以执行以下操作:

ActionCallback callback = new ActionCallback(
                    new URI("action uri"));

在这里你应该提供实际的uri行动位置而不是“action uri”。然后,做

getWebServiceTemplate().marshalSendAndReceive(request, callback)

答案 1 :(得分:0)

在使用动态值填充SOAP Header之前已经很久了,为此您需要使用回调对象来构建xml节点... WebServiceMessageCallback

http://docs.spring.io/spring-ws/site/reference/html/client.html#d5e1848

在我的场景中,我需要使用QName(Java)Node by Node构建节点。