springbootlearner
springbootlearner

Reputation: 1380

Spring Integration Asnchronous Webservice call

Hi is there any examples to call multiple webservices using spring integration asynchronouly?

Upvotes: 1

Views: 71

Answers (1)

Artem Bilan
Artem Bilan

Reputation: 121177

No, there is no, but there is <publish-subscribe-channel>, when you can have several <int-ws:outbound-gateway> as subscriber via their request-channel and they all will be called for the same Message.

You even can collect their responses afterwards using <aggregator>.

Although there is <scatter-gather> component of the same name EI pattern.

Not sure what is your concern, but you should start from the Reference Manual, at least, to see the entire picture.

Upvotes: 1

Related Questions