How to add custom header on spring soap client

5.9k Views Asked by At

Hi I would like to add header to spring soap client and I have a ClientAppConfig class which is like below;

@Configuration
public class ClientAppConfig {

    @Bean
    public Wss4jSecurityInterceptor wss4jSecurityInterceptor() {
        Wss4jSecurityInterceptor interceptor = new Wss4jSecurityInterceptor();
        interceptor.setSecurementActions("Timestamp");
        interceptor.setSecurementUsername("user");
        interceptor.setSecurementPassword("*******");
        return interceptor;
    }

    @Bean
    public Jaxb2Marshaller marshaller() {
        Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
        marshaller.setPackagesToScan("com");

        return marshaller;
    }

    @Bean
    public SomeClient someClient(Jaxb2Marshaller marshaller) {
        SomeClient client = new SomeClient();
        client.setDefaultUri("http://test");
        client.setMarshaller(marshaller);
        client.setUnmarshaller(marshaller);

        return client;
    }
}

Example Client:

@Component
public class SomeClient extends WebServiceGatewaySupport {

    public SomeResponse someMethod(ArrayOfLong arrayOfLong) {
        SomeRequest request = new SomeRequest();
        request.setsomeId(arrayOfLong);
        SomeResponse response = (SomeResponse) getWebServiceTemplate()
                .marshalSendAndReceive(request, new SoapActionCallback(
                        "http://soapaction"));
        return response;
    }
}

And I have wsdl request like this;

<soapenv:Envelope xmlns:soapenv="http://envelope" xmlns:v1="http://Service">
   <soapenv:Header xmlns:as="http://Schema">
        <wsse:Security xmlns:wsse="http://wss-wssecurity-secext-1.0.xsd">
            <wsse:UsernameToken>
                <wsse:Username>user</wsse:Username>
                <wsse:Password>********</wsse:Password>
            </wsse:UsernameToken>
        </wsse:Security>
        <as:consumerContext xsi:type="as:IntWebAppContextType" xmlns:as="http://Schema" xmlns:xsi="http://XMLSchema-instance">

            <consumerCode>someCode</consumerCode>
        </as:consumerContext>
    </soapenv:Header>
   <soapenv:Body>
      <v1:someReceived xmlns:ns3="http://Service" xmlns:ns2="http://Schema">
         <v1:parameters>
            <!--Optional:-->
            <v1:someId>
               <!--Zero or more repetitions:-->
               <v1:long>111111111</v1:long>
            </v1:someId>
         </v1:parameters>
      </v1:someReceived>
   </soapenv:Body>
</soapenv:Envelope>

I have added username and password but I have to add as:consumerContext section, I need to get consumerCode for getting response other wise Im getting error. How Can I get consumerCode with spring ws

1

There are 1 best solutions below

5
On

If you generate JAVA classes using wsimport in windows, as:

wsimport -keep -verbose http://compA.com/ws/server?wsdl

You will get ConsumerContext.java generated which you can populate with valid data, set it in Header.java using setConsumerContext(ConsumerContext obj) and fire the request.

Similar implementation you can find here - writing-and-consuming-soap-webservice-with-spring with source code on GitHub.