Answer(s)
- cluster is defined that consists of six WebLogic servers running an enterprise application: aWeb application and a JAR file with some EJBs. In-memory session replication is enabled for theWeb application and the EJBs. All the EJBs are clusterable (home and remote stubs).The round-robin algorithm is used to balance the load across the servers. A client accesses oneserver and an HTTP Session is started. If the client makes another request, assuming there is noserver failure, how is the second client request processed?A. The client request might be handled by any server.
- The client request is handled by the same server as the previous request was.
- The client request might be handled by the primary or backup server.
- The client request will be distributed, round-robin style, among the servers.
- The client request will be handled by a different server.
Correct Answer
The client request is handled by the same server as the previous request was.