• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Spring Integration and Webservices

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How do you call a Webservices using Spring Integration 2.1?
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tebello Tjemolane wrote:How do you call a Webservices using Spring Integration 2.1?



In Spring Integration there are things called Adapters and also Gateways. Adapters are one way, whereas a Gateway is two ways. So there are adapters and gateways for all types of "communication" So there is a WebService inbound and outbound adapters and also a WebService gateway that you can use to call Web Services. Although inbound adapter would be used if you are the web service. So you would use the outbound to just call out to a web service, or a Gateway if you want to call a web service and get the response back.

Mark
 
reply
    Bookmark Topic Watch Topic
  • New Topic