Please enable JavaScript.
Coggle requires JavaScript to display documents.
Nhóm 3_ 3 - Coggle Diagram
Nhóm 3_ 3
-
Chap 10
-
Multi-tier
-
pros/cons
-
Cons
-
Adding multiple servers in the system makes the server reliability and availability even more critical
Broker Architecture
Skeleton (server-side proxy) – encapsulates lower network details, dispatch requests to local service objects
Encapsulates low-level system specific networking functions like client proxy and provides high level APIs to mediate between the server and the broker
It receives and unpacks the requests, unmarshals the arguments, and calls the appropriate service.
-
When receives the result back from the server, it also marshals results before sending it back to the client
-
Stub (client-side proxy) – provide “stub” version of remote services, responsible for massaging messages
To the client, a remote object appears like a local one.
The proxy hides inter-process communication at protocol level, marshals the parameter values, and unmarshals results from the server.
-
The stud is generated at compilation time and deployed at client side to be used as a proxy for client
-
-
-
-
-