message driven vs. event driven approaches to application integration - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T05:08:09Zhttp://stackoverflow.com/feeds/question/1659351http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1659351/message-driven-vs-event-driven-approaches-to-application-integration0message driven vs. event driven approaches to application integrationdenchrhttp://stackoverflow.com/users/1064672009-11-02T03:52:54Z2009-12-23T02:10:23Z
<p>Hello,</p>
<p>I was wondering if there is a clear distinction between message driven and event driven environments when we refer to SOA or middleware and generally in cases of application and enterprise integration. I understand that a user interface resembles an event driven model where our system intercepts action by the user.</p>
<p>Also it is clear that messaging supports systems based on publish/subscribe, sychronous or asynchronous communication, transactions etc.</p>
<p>But is there a difference in the middleware/soa/application intergration context? (architecture level). I am trying to consult sources such wikipedia (<a href="http://en.wikipedia.org/wiki/Message%5FOriented%5FMiddleware" rel="nofollow">here</a>, and <a href="http://en.wikipedia.org/wiki/Event-driven%5FSOA" rel="nofollow">here</a>), but I am still somewhat confused. When should a developer prefer one solution over the other?</p>
<p>Are there examples or cases where one approach makes more sense than the other? Or any comprehensive resources and guides to implementing each one?</p>
<p>Many thanks for any insight.</p>
http://stackoverflow.com/questions/1659351/message-driven-vs-event-driven-approaches-to-application-integration/1950323#19503230Answer by sdg for message driven vs. event driven approaches to application integrationsdghttp://stackoverflow.com/users/35292009-12-23T02:10:23Z2009-12-23T02:10:23Z<p>Short answer to "is there a clear distinction" would be "no".</p>
<p>The terms are not quite interchangeable, but imply the same basic architecture - specifically that you will be triggering off of events or messages.</p>
<p>The first article you reference is about the low-level plumbing, the MOM or pub-sub "bus" that transports the messages on your behalf. The event-driven architecture is what you build on top of that framework.</p>
<p>The term event-driven, while also applying to GUI code, is not really at the same level of abstraction. In that case, it is a pattern in-the-small compared to building your entire enterprise along message/event driven lines.</p>