Multiple choice technology architecture

What are the main two forms of Message Exchange Patterns

  1. Asynchronous pattern; Synchronous Pattern

  2. Request-response pattern; one way pattern

  3. RPC/literal;document/literal

  4. RPC/encoded;RPC/literal

  5. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Request-response pattern involves a client sending a message and receiving a reply, while one-way pattern sends a message without expecting a response. These are the two fundamental message exchange patterns in web services. Option A describes execution modes (async/sync), not patterns. Options C and D are SOAP encoding styles, not message exchange patterns.