Example usage for org.springframework.integration.ws MarshallingWebServiceOutboundGateway setRequestCallback

List of usage examples for org.springframework.integration.ws MarshallingWebServiceOutboundGateway setRequestCallback

Introduction

In this page you can find the example usage for org.springframework.integration.ws MarshallingWebServiceOutboundGateway setRequestCallback.

Prototype

public void setRequestCallback(WebServiceMessageCallback requestCallback) 

Source Link

Usage

From source file:com.qpark.eip.core.spring.EipSoapActionWebServiceMessageCallback.java

/**
 * Add <code>this</code> to all {@link MarshallingWebServiceOutboundGateway}
 * s in the context./*from   www  . j a va2 s  .c om*/
 */
@PostConstruct
private void setRequestCallbacks() {
    if (this.gateways != null) {
        for (MarshallingWebServiceOutboundGateway gateway : this.gateways) {
            gateway.setRequestCallback(this);
        }
    }
}