|
A connection-oriented service
is one where consumers and producers are tied together in one
long lasting connection as several messages are passed back and
forth. On the plus side, this is the simplest model for programmers
to understand and work with. The downside is that, since the connection
is likely to lie idle much of the time, it can be a waste of resources
and severely limit scalability. Web services are generally connectionless.
|
|