Free Actual Microsoft Azure AZ-204 Actual Exam Questions - Question 7 Discussion

Question No. 7
Note: This question is part of a series of questions that present the same scenario. Each question in
the series contains a unique solution. Determine whether the solution meets the stated goals.
You are developing and deploying several ASP.NET web applications to Azure App Service. You plan
to save session state information and HTML output.
You must use a storage mechanism with the following requirements:
Share session state across all ASP.NET web applications.
Support controlled, concurrent access to the same session state data for multiple readers and a
single writer.
Save full HTTP responses for concurrent requests.
You need to store the information.
Solution: Enable Application Request Routing (ARR).
Does the solution meet the goal?
Select one option, then reveal solution.
US
RG
Ryan G.
2026-02-15

ARR is mainly for routing, not session state storage or concurrency control, B.

0
SS
Sarah S.
2026-01-27

B Definitely not. ARR just handles routing and load balancing, it doesn’t store session state or manage concurrent access to session data. Since the question needs shared session state across apps and controlled concurrency, ARR alone won’t cut it. You’d need something like Azure Cache for Redis or a distributed session state provider instead.

0
RN
Rayan N.
2026-01-24

ARR doesn’t actually store session data or handle concurrent access, it just routes requests. This won’t meet the shared session state or concurrency requirements, so B.

0
AY
Ahmed Y.
2026-01-20

ARR handles routing and load balancing but doesn’t provide a shared session state store or manage concurrency for session data across multiple apps. It mainly directs traffic rather than storing data. The requirement here is for a storage mechanism that supports shared session state and concurrent access control, which ARR doesn’t do. So, relying on ARR alone won’t meet the goal. Would something like Azure Cache for Redis be more appropriate for this scenario?

0
SA
Saad A.
2026-01-16

Option B. ARR is more about routing and load balancing, not really about sharing session state or managing concurrent access to stored data across apps.

0