Which keyword do you use to create a new function in DataWeave?
Which keyword do you use to create a new function in DataWeave?A . function B. fun C. func D. mapView AnswerAnswer: B Explanation: You can define your own DataWeave functions using the fun declaration in the header of a DataWeave script. Sample is as below. ---------------------------------------- %dw 2.0 output application/json...
How should the WHERE clause be changed to set the city and state values from the configured input parameters?
Refer to the exhibit. How should the WHERE clause be changed to set the city and state values from the configured input parameters? A) B) C) D) A . Option A B. Option B C. Option C D. Option DView AnswerAnswer: A
What is the last message logged by the Logger component after the batch job completes processing?
Refer to the exhibits. The input array of strings is processed by the batch job that processes, fitters, and aggregates the values. What is the last message logged by the Logger component after the batch job completes processing? A) B) C) D) A . Option A B. Option B C....
What valid expression can be used to so that HTTP configuration can pick the value from configuration file?
Refer to the exhibits. Mule application has an HTTP request configuration where host name is hardcoded. Organization is looking to move host and port values to configuration file. What valid expression can be used to so that HTTP configuration can pick the value from configuration file?A . #[training.host] B. ${http.host}...
What should be changed in the request so that a success response code is returned to the web client?
Refer to the exhibits. The web client sends a POST request to the ACME Order API with an XML payload. An error is returned. What should be changed in the request so that a success response code is returned to the web client?A . Set a request header with the...
What is the next step to configure the API proxy to enforce the new SLA policy?
An SLA based policy has been enabled in API Manager. What is the next step to configure the API proxy to enforce the new SLA policy?A . Add new property placeholders and redeploy the API proxy B. Add new environment variables and restart the API proxy C. Restart the API...
What path value can be set in the HTTP GE~ event source to accept web client requests from both of these URLs?
Refer to the exhibits. The Mule application implements a REST API that accepts GET requests from web clients on the URLs: http://acme com/order/status and http: Vacme.com/customer/status. What path value can be set in the HTTP GE~ event source to accept web client requests from both of these URLs?A . *[order,customer]/status...
Which of the below is not the mandatory configurations for HTTP Listener?
Which of the below is not the mandatory configurations for HTTP Listener?A . Path B. Allowed methods C. HTTP port in Connector Configuration D. HTTP host in Connector ConfigurationView AnswerAnswer: B Explanation: Allowed methods is an optional configuration. If nothing is specified then all HTTP methods are supported. Rest all...
What is the payload at the event processor after the HTTP Request?
An HTTP Request operation sends an HTTP request with a non-empty JSON object payload to an external HTTP endpoint. The response from the external HTTP endpoint returns an XML body. The result is stored in a target named the Result. What is the payload at the event processor after the...
What DataWeave expression transforms the example XML input to the CSV output?
What DataWeave expression transforms the example XML input to the CSV output? A) B) C) D) A . Option A B. Option B C. Option C D. Option DView AnswerAnswer: A Explanation: Correct answer is as below. Attributes in the incoming xml payload are always accessed using @.Similarly *item is...