MCD-Level-2問題集、MCD-Level-2資料勉強さまざまな人々がさまざまな学習習慣を持っているという事実を踏まえて、3つのMCD-Level-2トレーニング質問バージョンをご案内します。さらに、MCD-Level-2学習教材のデモを自由にダウンロードして検討することもできます。そのような試用に追加料金は発生しないことをお約束します。逆に、MCD-Level-2試験問題のデモを試して、十分な内容を選択することを心からお勧めします。 MCD-Level-2トレーニングガイドは、時間とお金をかけて購入する価値があります。 MuleSoft Certified Developer - Level 2 (Mule 4) 認定 MCD-Level-2 試験問題 (Q14-Q19):質問 # 14
Which properties are mandatory on the HTTP Connector configuration in order to use the OAuth 2.0 Authorization Code grant type for authentication?
A. Token URL, authorization URL, client ID, client secret local callback URL
B. External callback URL, access token URL, local authorization URL, authorization URL, client ID, client secret
D. External callback URL, access token URL, client ID response access token
正解:A
解説:
Explanation
To use the OAuth 2.0 Authorization Code grant type for authentication, the HTTP Connector configuration requires the following properties: token URL, authorization URL, client ID, client secret, and local callback URL. The token URL is the endpoint of the authorization server that provides access tokens. The authorization URL is the endpoint of the authorization server that initiates the user consent flow. The client ID and client secret are the credentials of the Mule application registered with the authorization server. The local callback URL is the endpoint of the Mule application that receives the authorization code from the authorization server.
References: https://docs.mulesoft.com/http-c ... ntication#oauth-2-0
質問 # 15
Refer to the exhibit.
When creating a new project, which API implementation allows for selecting the correct API version and scaffolding the flows from the API specification?
A. Import a published API
B. Download RAML from Design Center
C. Import RAML from local file
D. Generate a local RAML from anypoint Studio
正解:B
解説:
To create a new project that selects the correct API version and scaffolds the flows from the API specification, the developer should import a published API. This option allows importing an API specification that has been published to Anypoint Exchange or Design Center, and selecting a specific version of that API specification.
The developer can also choose to scaffold flows based on that API specification.
References:https://docs.mulesoft.com/apikit/4.x/apikit-4-new-project-task
質問 # 16
Which statement is true when using XML SDK for creating custom message processors?
A. Operations can be reused in recursive calls
B. All operations are public
C. An XML SDK provides both inbound and outbound operations
D. Properties are fields defined by an end user of the XML SDK component and serve as a global configuration for the entire Mule project in which they are used
正解:B
解説:
Explanation
When using XML SDK for creating custom message processors, all operations are public by default and can be used by any Mule application that imports them. There is no way to make an operation private or protected in XML SDK. References: https://docs.mulesoft.com/mule-sdk/1.1/xml-sdk#operations
質問 # 17
A Mule application for processing orders must log the order ID for every log message output.
What is a best practice to enrich every log message with the order ID?
A. Use flow variables within every logger processor to log the order ID
B. Set a flow variable and edit the log4/2.xml file to output the variable as part of the message pattern
C. Create a custom XML SDK component to wrap the logger processor and automatically add the order ID within the connector
D. Use the Tracing module to set logging variables with a Mapped Diagnostic Context
正解:D
解説:
Explanation
To enrich every log message with the order ID, the developer should use the Tracing module to set logging variables with a Mapped Diagnostic Context (MDC). The Tracing module allows adding custom key-value pairs to log messages using MDC variables. The developer can use Set Logging Variables operation to set the order ID as an MDC variable and then use it in any logger processor within the same thread or event.
References: https://docs.mulesoft.com/tracin ... t-logging-variables
質問 # 18
Refer to the exhibit.
A Mule application pom.xml configures the Maven Resources plugin to exclude parsing binary files in the project's src/main/resources/certs directory.
Which configuration of this plugin achieves a successful build?
A.
B.
C.
D.
正解:C
解説:
Explanation
To configure the Maven Resources plugin to exclude parsing binary files in the project's src/main/resources/certs directory, option C should be used. This option specifies that any files with .cer or .jks extensions under the certs directory should be excluded from filtering. Filtering is a process of replacing placeholders with actual values in resource files during the build process. Binary files should not be filtered because they may become corrupted or unusable. References: https://maven.apache.org/plugins ... xamples/filter.html https://maven.apache.org/plugins ... nclude-exclude.html