What is the correct syntax for a Logger component to output a message with the contents
of a 3SON Object payload?
A.
The payload is: $(payload)
B.
#["The payload is: " ++ payload]
C.
The payload is: #[payload]
D.
#["The payload is: " + payload]
#["The payload is: " ++ payload]
What HTTP method in a RESTful web service is typically used to completely replace an existing resource?
A. GET
B. PATCH
C. PUT
D. POST
PUT replaces the original version of the resource, whereas the PATCH method supplies a set of instructions to modify the resource.
Refer to the exhibits.

A. #[training.host]
B. ${http.host}
C. #{training.host}
D. ${training.host}
Refer to the exhibits. A company has defined this Book data typeand Book example to be
used in APIs. What is valid RAML for an API that uses this Book data type and Book
A.
Option A
B.
Option B
C.
Option C
D.
Option D
Option D
How are multiple conditions used in a Choice router to route events?
A. To route the same event to the matched route of EVERY true condition
B. To find the FIRST true condition, then distribute the event to the ONE matched route.
C. None of these
D. To find the FIRST true condition, then route the same event to the matched route and ALL FOLLOWING routes
Explanation:
Choice router finds the FIRST true condition, then distribute the event to the ONE matched
route.
MuleSoft Doc Ref : https://docs.mulesoft.com/mule-runtime/4.1/choice-router-concept
The Choice router dynamically routes messages through a flow according to a set of
DataWeave expressions that evaluate message content. Each expression is associated
with a different routing option. The effect is to add conditional processing to a flow, similar
to an if/then/else code block in most programming languages.
Only one of the routes in the Choice router executes, meaning that the first expression that
evaluates to true triggers that route’s execution and the others are not checked. If none of
the expressions are true, then the default route executes.
What is the correct Syntax to add a customer ID as a URI parameter in the HTTP listener's path attribute?

A. #[customerID]
B. $[customerID]
C. {customerID}
D. (customerID)
URL parameters are always accessed using { } like => {customerID}
Refer to the exhibits.

A.
Set a header In the Consume operation equal to the destination query parameter
B.
set a SOAP payload before the Consume operation that contains the destination
queryparameter
C.
set a property m the Consume operation equal to the destination query parameter
D.
set a JSON payload before the Consume operation that contains the destination query
parameter
set a SOAP payload before the Consume operation that contains the destination
queryparameter
A Utility.dwl file is located in a Mule project at src/main/resources/modules. The Utility.dwl hie defines afunction named pascalize that reformats strings to pascal case. What is the correct DataWeave to call the pascalize function in a Transform Message component?
A.
Option A
B.
Option B
C.
Option C
D.
Option D
Option B
| Page 1 out of 29 Pages |