This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Architect Certification (SCEA/OCMJEA) and the fly likes What is Synchronous Messaging Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Certification » Architect Certification (SCEA/OCMJEA)
Reply Bookmark "What is Synchronous Messaging" Watch "What is Synchronous Messaging" New topic
Author

What is Synchronous Messaging

Ray Ye
Ranch Hand

Joined: Jun 02, 2004
Posts: 54
To my knowledge, when you say messaging system, it is inherently asynchronous, loosely coupled compared with synchronous, tightly couple RPC-based system.

So what is synchronous messaging's meaning in the exam objective? Does it mean RPC-based call or true message-based call but with request/reply model?

As this will lead to some fundamental different features of two types of systems, I thank you very much for the clarification.

Ray
Anonymous
Ranch Hand

Joined: Nov 22, 2008
Posts: 18944
i guess it is sort of mingled, but u r right.
MESSAGING is implicitly a-synch.

But at the same time, say if your program or browser makes a HTTP PUT request to the web server somewhere this is also a type of messaging. : in a synchronous manner though.
Ray Ye
Ranch Hand

Joined: Jun 02, 2004
Posts: 54
Thanks R�stem. I guess the meaning has to be dependent on context. If messaging is used by itself, then it is the inherently asynchronous messaging. Where it is used between synchronous messaging and asynchronous messaging, the synchronous messaging means the RPC-based synchronous communication, is it right?
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: What is Synchronous Messaging
 
Similar Threads
Synchronous Messaging & EJB
Connectivity to External System
XML-RPC
SOAP vs. RPC
Publisher/Sub and Point to Point..