How routing will take place in this scenario?
There are three routes configured for Scatter-Gather and incoming event has a payload is an Array of three objects . How routing will take place in this scenario?A . Incoming array objects would be split into three and each part would be sent to one route each in sequential mannerB...
What payload and quantity are togged at the end of the main flow?
Refer to the exhibits. What payload and quantity are togged at the end of the main flow?A . [[order1, order2, order3, order4], 14]B . [[1,2,3,4], 10]C . [[1,2,3,4], 14]D . [orderlorder2order3order4, 14]View AnswerAnswer: C
Which of the below activity doesn't support parallel execution?
Which of the below activity doesn't support parallel execution?A . Scatter-Gather RouterB . First Successful RouterC . Parallel For EachD . Batch jobView AnswerAnswer: C Explanation: The First Successful router iterates through a list of configured processing routes until one of the routes executes successfully. This is sequential execution. In...
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...
What payload and quantity are togged at the end of the main flow?
Refer to the exhibits. What payload and quantity are togged at the end of the main flow?A . [[order1, order2, order3, order4], 14]B . [[1,2,3,4], 10]C . [[1,2,3,4], 14]D . [orderlorder2order3order4, 14]View AnswerAnswer: C
{step2amount=102}
{step2amount=102}View AnswerAnswer: D Explanation: Lets understand this solution step by step. 1) Batch Step (Less than 50) Accept expression for this batch step is less than 50. Hence elements which will go in this batch step are amount value 40 and 2. Hence output of logger in first batch step...
What payload and quantity are togged at the end of the main flow?
Refer to the exhibits. What payload and quantity are togged at the end of the main flow?A . [[order1, order2, order3, order4], 14]B . [[1,2,3,4], 10]C . [[1,2,3,4], 14]D . [orderlorder2order3order4, 14]View AnswerAnswer: C
What is the next step to make the API discoverable?
An API has been created in Design Center . What is the next step to make the API discoverable?A . Publish the API to Anypoint ExchangeB . Publish the API from inside flow designerC . Deploy the API to a Maven repositoryD . Enable autodiscovery in API ManagerView AnswerAnswer: A...
What is the correct way to format the decimal 200.1234 as a string to two decimal places?
What is the correct way to format the decimal 200.1234 as a string to two decimal places?A . 200.1234 as string as format: ".0#"B . 200.1234 as String {format: ".0#"}C . 200.1234 as String as format: ".0#"D . 200.1234 as string {format: ".0#"}View AnswerAnswer: B Explanation: Correct answer is 200.1234...
What attribute you would change in ClientRequestFlow to make this implementation work successfully?
Refer to the exhibits. Client sends the request to ClientRequestFlow which calls ShippingFlow using HTTP Request activity. During E2E testing it is found that that HTTP: METHOD_NOT_ALLOWED error is thrown whenever client sends request to this flow. What attribute you would change in ClientRequestFlow to make this implementation work successfully?...