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...
What is the payload at the Logger component after the HTTP Request?
Refer to the exhibits. In the request Flow an HTTP Request operation is configured to send an HTTP request with an XML payload. The request is sent to the HTTP Listener in the transform Flow. That flow transforms the incoming payload into JSON format and returns the response to 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...
3. loginUser("[email protected]")
3. loginUser("[email protected]")View AnswerAnswer: D Explanation: * To use custom modules, you need to import the module or functions you want to use by adding the import directive to the head of your DataWeave script, for example: 1) Does not identify any functions to import from the String module: import dw::core::Strings...
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 minimal requirement in a flow for a Mule application to compile?
What is minimal requirement in a flow for a Mule application to compile?A . Event Source B. Event Processors C. Error handlers D. Source and processors bothView AnswerAnswer: B Explanation: Process section is must to get compiles. Process section must have one or more processors Diagram Description automatically generated
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. order4 D. order1order2order3order4View AnswerAnswer: B Explanation: This is a trick question. For Each does not modify the current payload. The output payload is the...