Question 9 of 179 from exam AZ-204: Developing Solutions for Microsoft Azure

Question 9 of 179 from exam AZ-204: Developing Solutions for Microsoft Azure

Question

HOTSPOT - You are developing an Azure Web App.

You configure TLS mutual authentication for the web app.

You need to validate the client certificate in the web app.

To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Hot Area:

Answer Area

Property Value
Client certificate location

HTTP request header
Client cookie

HTTP message body
URL query string

Encoding type Vv
HTML
URL
Unicode
Base64

Explanations

Answer Area

Property Value

Client certificate location iv
HTTP request header

Client cookie

HTTP message body

URL query string

Encoding type Vv

HTML
URL
Unicode
Base64

Accessing the client certificate from App Service.

If you are using ASP.NET and configure your app to use client certificate authentication, the certificate will be available through the HttpRequest.ClientCertificate property.

For other application stacks, the client cert will be available in your app through a base64 encoded value in the "X-ARR-ClientCert" request header.

Your application can create a certificate from this value and then use it for authentication and authorization purposes in your application.

https://docs.microsoft.com/en-us/azure/app-service/app-service-web-configure-tls-mutual-auth