Valid MCD-Level-1 Dumps shared by ExamDiscuss.com for Helping Passing MCD-Level-1 Exam! ExamDiscuss.com now offer the newest MCD-Level-1 exam dumps, the ExamDiscuss.com MCD-Level-1 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com MCD-Level-1 dumps with Test Engine here:
Refer to the exhibit. The main flow contains a Flow Reference for the child flow. What values are accessible in the child flow after a web client submits a request to http://localhost:8Q81/order? color=red?
Correct Answer: C
Recent Comments (The most recent comments are at the top.)
Issam Alameh - Feb 05, 2023
C is the correct answer, try the flow: <flow name="exampl-flow"> <http:listener config-ref="HTTP_Listener_config" path="/order"/> <set-payload value="order01"/> <set-variable variableName="quantity" value="1"/> <flow-ref name="child-flow"/> </flow>
Recent Comments (The most recent comments are at the top.)
C is the correct answer, try the flow:
<flow name="exampl-flow">
<http:listener config-ref="HTTP_Listener_config" path="/order"/>
<set-payload value="order01"/>
<set-variable variableName="quantity" value="1"/>
<flow-ref name="child-flow"/>
</flow>
<flow name="child-flow">
<logger level="INFO" message='#[payload ++ " " ++ attributes.queryParams.color++ " " ++ vars.quantity]'/>
</flow>
Answer C is correct, everything is accessible by a child logger.
To the other commenter, read the question first. There is no HTTP request, only a child flow. And all values are accessible in a child flow.
This answer is totally incorrect, The http request is not sending any var or query param.