Where in the hierarchy are variables stored?
Refer to the exhibit. A Mule event is composed of a hierarchy of objects. Where in the hierarchy are variables stored?A . Mule eventB . Mule message payloadC . Mule messageD . Mule message attributesView AnswerAnswer: A Explanation: Variables are stored under Mule event. Please refer to below image for...
What is the expected output from the Logger component?
Refer to the exhibit. The Batch Job processes, filters and aggregates records,. What is the expected output from the Logger component?A . [10. 20, 30. 40, 50, 60]B . [10. 20] [30, 40] [50, 60]C . [20, 40, 60]D . [20. 40] [60]View AnswerAnswer: D Explanation: * Batch scope has...
What is the correct DataWeave expression to access the firstName parameter?
A web client submits a request to http://localhost:8081?flrstName=john. What is the correct DataWeave expression to access the firstName parameter?A . #[attributes.queryParams.firstName]B . #[message.queryParams.hrstName]C . #[message.inboundProperties.'http.query.params'.firstName]D . #[attributes.'http.query.params'.firstName]View AnswerAnswer: A
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 proxyB . Add new environment variables and restart the API proxyC . Restart the API...
What is the result at the end of the flow?
Refer to the exhibits. A web client submits a request to http://localhQst:8081 /flights. What is the result at the end of the flow?A . "string"B . "Java"C . "object"D . "XML"View AnswerAnswer: A
What export options create the smallest deployable archive that will successfully deploy to CloudHub?
A Mule project contains a MySQL Database dependency. The project is exported from Anypoint Studio so it can be deployed to CloudHub. What export options create the smallest deployable archive that will successfully deploy to CloudHub? A) B) C) D) A . Option AB . Option BC . Option CD...
What is a valid <when> expression to route Mule events to the non-default flow?
Refer to the exhibits. The <when> expression for the Choice router needs to be written. What is a valid <when> expression to route Mule events to the non-default flow?A . #['MuleSoft' == paytoad.company]B . #[ company = "MuleSoft" ]C . #[ if( company = "MuleSoft") ]D . #[ if( 'MuleSoff...
How should the listener be configured so it retrieves each row at most one time?
A Database On Table Row listener retrieves data from a CUSTOMER table that contains a primary key userjd column and an increasing kxjin_date_time column. Neither column allows duplicate values. How should the listener be configured so it retrieves each row at most one time?A . Set the watermark column to...
What is a valid expression for the Choice router’s when expression to route events to the documenticShipping flow?
Refer to the exhibit. What is a valid expression for the Choice router’s when expression to route events to the documenticShipping flow?A . 0#[ payload = 'US' ]B . #[ payload == 'US' JC . #[ if(payload = 'US') JD . #[ if(payload == "US") ]View AnswerAnswer: B Explanation: Choice...
Where does the configuration file's location need to be specified in the Mule application?
To avoid hard-coding values, a flow uses some property placeholders and the corresponding values are stored in a configuration file. Where does the configuration file's location need to be specified in the Mule application?A . The pom.xml fileB . A global elementC . The mule-art if act .json fileD ....