The following is the code from ws-outbound-gateway sample
It's possible to change URI by MessageBuilder.header("ws-soap-action","http://tempuri.org/CelsiusToFahrenheit").withPayload(request).build() instead ofCode:<chain input-channel="fahrenheitChannel" output-channel="celsiusChannel"> <ws:header-enricher> <ws:soap-action value="http://tempuri.org/CelsiusToFahrenheit" /> </ws:header-enricher> <ws:outbound-gateway uri="http://www.w3schools.com/webservices/tempconvert.asmx" /> </chain>
how to change the uri value uri="http://www.w3schools.com/webservices/tempconvert.asmx" by API?Code:<ws:header-enricher> <ws:soap-action value="http://tempuri.org/CelsiusToFahrenheit" /> </ws:header-enricher>
do SI has another API for dynamically runtime configuration changes ?


Reply With Quote
