messageSenders

open fun messageSenders(messageSenders: Array<WebServiceMessageSender>): WebServiceTemplateBuilder

Sets the WebServiceMessageSenders that should be used with the WebServiceTemplate. Setting this value will replace any previously defined message senders, including the HTTP-based message sender, if any. Consider using additionalMessageSenders to keep it with user-defined message senders.

Return

a new builder instance.

Parameters

messageSenders

the message senders to set

See also


open fun messageSenders(messageSenders: Collection<out WebServiceMessageSender>): WebServiceTemplateBuilder

Sets the WebServiceMessageSenders that should be used with the WebServiceTemplate. Setting this value will replace any previously defined message senders, including the HTTP-based message sender, if any. Consider using additionalMessageSenders to keep it with user-defined message senders.

Return

a new builder instance.

Parameters

messageSenders

the message senders to set

See also