What is the correct DataWeave to call the pascalize function in a Transform Message component?
A Utility.dwl file is located in a Mule project at src/main/resources/modules. The Utility.dwl hie defines a function named pascalize that reformats strings to pascal case. What is the correct DataWeave to call the pascalize function in a Transform Message component? A) B) C) D) A . Option AB . Option...
What response message is returned to the web client?
Refer to the exhibits. A web client sends a GET request to the HTTP Listener. What response message is returned to the web client?A . ""B . "End"C . "Start"D . "String is not blank"View AnswerAnswer: D Explanation:
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...
What is the next step to create a REST Connector from this API specification?
An API specification is designed using RAML. What is the next step to create a REST Connector from this API specification?A . Download the API specification and build the interface using APIkitB . Publish the API specification to Any point ExchangeC . Implement the API specification using flow designer in...
What base path value should be set in an HTT? Listener config element so that it can be used to configure both HTTP Listeners?
A Mule application contains two HTTP Listeners, each configured for different API endpoints: http://acme.com/apis/orders and http: //acme .com/a pis/customers. What base path value should be set in an HTT? Listener config element so that it can be used to configure both HTTP Listeners?A . /apis/?B . /apis/C . /apis/orders|customersD ....
What is the correct way in DataWeave code to import MyModule using a wildcard and then call the module's formatString function?
A Mule project contains a DataWeave module called MyModule.dwl that defines a function named formatString. The module is located in the project's src/main/resources/modules folder. What is the correct way in DataWeave code to import MyModule using a wildcard and then call the module's formatString function? A) B) C) D) A...
What is the structure of the payload at the end of the flow?
Refer to the exhibits. A web client submits a request to http://localhQst:8081. What is the structure of the payload at the end of the flow? A) B) C) D ) A . Option AB . Option BC . Option CD . Option DView AnswerAnswer: D Explanation: Scatter-Gather Router The Scatter-Gather...
What values are accessible to the Logger at the end of the flow after a web client submit request to http://local:801/order?color=red?
Refer to the exhibit. The main flow contains an HTTP Request in the middle of the flow. The HTTP Listeners and HTTP request use default configurations. What values are accessible to the Logger at the end of the flow after a web client submit request to http://local:801/order?color=red?A . payloadB ....
What URI should a web client use to request order P05555?
A company has an API to manage purchase orders, with each record identified by a unique purchase order ID. The API was built with RAML according to MuleSoft best practices. What URI should a web client use to request order P05555?A . /orders/{P05555}B . /orders/order=P05555C . /orders?order=P05555D . /orders/P05555View AnswerAnswer:...
What is the DataWeave expression to access booklSBN later in the flow?
A web client submits a request to http://localhost:8081/books/0471767840. The value "0471767840" is captured by a Set Variable transformer to a variable named booklSBN. What is the DataWeave expression to access booklSBN later in the flow?A . booklSBNB . attributes.booklSBNC . flowVars.booklSBND . vars. booklSBNView AnswerAnswer: D