• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

what are the difference between ESB and web service

 
Ranch Hand
Posts: 594
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
web service concept i know little bit.But i do not have more idea about ESB .
 
Ranch Hand
Posts: 2198
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
An ESB architecture introduces a bus to which services and clients connect, instead of connecting directly to each other.
When connecting to a bus, it becomes significantly easier to, for instance, monitor the communication between clients and server in order to perform, for instance, load balancing or failover between instances of a service.

Reducing the direct connections between services and clients also reduces the impact of changes.
If, for instance, a service changes its data format, an adapter that transforms the data from the new format to the format expected by the (old) clients.

There is of course much more, but I hope that you have got at least a hint on what an ESB can be.
Best wishes!
 
reply
    Bookmark Topic Watch Topic
  • New Topic