Enterprise messaging API with web services for high performance?

Does the combination of Enterprise Messaging and Web Services result in real performance gains over simple HTTP requests over sockets?

(if implementation details help, interested in JMS with SOAP webservice)

0


source to share


2 answers


as always, it depends. If you are sending xml documents over socket using http protocol, then no. Your performance will be about the same as it would be for enterprise frameworks (because web services is just that the data encoded in the soap protocol is sent over the http protocol over the socket).

If you are sending a lighter stream of data over a socket, you will probably get better performance.



Ultimately, it depends on what you send, how many of them are, and how often you send it.

+1


source


Typically a messaging solution is used for message reliability rather than performance. If you want guaranteed message delivery, use something like JMS.



HTTP is so lightweight, I can't imagine any other messaging solution would have better performance.

+1


source







All Articles