InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by loosely coupled architecture of Web services? |
|
Answer» A consumer of a web service is not tied to that web service directly. The web service interface can change over time without compromising the client's ability to interact with the service. A tightly coupled system implies that the client and server logic are closely tied to one another, implying that if one interface changes, the other must be updated. Adopting a loosely coupled architecture tends to make software systems more manageable and allows simpler integration between different systems. |
|