What is the correct DataWeave expression to log accountType?
A web client submits a request to http://localhost:8081?accountType=personal. The query parameter is captured using a Set Variable transformer to a variable named accountType. What is the correct DataWeave expression to log accountType?A . Account Type: #[flowVars.accountType]B . Account Type: #[message.inboundProperties.accountType]C . Account Type: # [attributes.accountType]D . Account Type: #[vars.accountType]View AnswerAnswer:...
How many Mule applications can run on a CloudHub worker?
How many Mule applications can run on a CloudHub worker?A . At most oneB . At least oneC . DependsD . None of theseView AnswerAnswer: A
What is the output of logger after the execution of choice router is completed?
CORRECT TEXT Refer to the exhibits. In the choice router, the When expression for the domestic shipping route is set to "#[payload= "FR"]". What is the output of logger after the execution of choice router is completed? A . "Domestic"B . "International"C . "US"D . A dataweave syntax error (Correct)View...
What is logged by the Logger component?
Refer to the exhibit. The Database Select operation returns five rows from a database . What is logged by the Logger component?A . "Array"B . "Object"C . "LinkedHashMap"D . "CaselnsensitrveHashMap"View AnswerAnswer: A
What is not the function of API Gateway ?
What is not the function of API Gateway ?A . Determine which traffic is authorized to pass through the API to backend servicesB . Meter the traffic flowing throughC . Logs all transactions, collecting and tracking analytics dataD . Specify throttling, security and other policiesView AnswerAnswer: D Explanation: Correct answer...
According to MuleSoft, what is the Center for Enablement’s role in the new IT operating model?
According to MuleSoft, what is the Center for Enablement’s role in the new IT operating model?A . Implements line of business projects to enforce common security requirementsB . Creates and manages discoverable assets to be consumed by line of business developersC . Centrally manages partners and consultants to implement line...
What is written to the records.csv file when the flow executes?
Refer to the exhibits. What is written to the records.csv file when the flow executes?A . The JSON payloadB . An error messageC . NothingD . The payload convert to CVSView AnswerAnswer: A Explanation: Transform Message Add write_date is coverting payload in JSON format and same JSON payload is avaialble...
What payload is logged at the end of the main flow?
Refer to the exhibits . What payload is logged at the end of the main flow? A . [order1, order2, order3, order4]B . [1, 2, 3, 4]C . order4D . order1order2order3order4View AnswerAnswer: B Explanation: Explanation This is a trick question. For Each does not modify the current payload. The output...
How we can scale deployed Mule application vertically on cloudhub?
How we can scale deployed Mule application vertically on cloudhub?A . Changing worker sizeB . Adding multiple workersC . Mule applications can be scaled only horizontallyD . Option 1 and 2 both can be usedView AnswerAnswer: A Explanation: Mule applications can be scaled vertically by changing worker size. Mule applications...
Where must the global error handler be specified so that the global error handler catches all errors from flows without their own error handlers?
A Mule application contains a global error handler configured to catch any errors. Where must the global error handler be specified so that the global error handler catches all errors from flows without their own error handlers?A . A configuration properties fileB . Nowhere, the global error handler is automatically...