A company requires a plug-in that makes multiple requests to an external web service. The plug-in must not time out when the web service has issues or is slow to respond.
You need to create the plug-in.
What should you do?
A company requires a plug-in that makes multiple requests to an external web service. The plug-in must not time out when the web service has issues or is slow to respond.
You need to create the plug-in.
What should you do?
The correct answer is: D. Set the HTTP connection timeout value explicitly to limit how long each connection can remain open. ✅ Here's why: The scenario involves a plug-in making multiple requests to an external web service, and the goal is to prevent timeouts when that service is slow or unresponsive. By setting the HTTP connection timeout value explicitly, you ensure: The plug-in doesn’t hang indefinitely on a slow request. You can fail fast or retry logic within your plug-in. You gain control over how long each request waits before failing.
if it runs synchronously it will throw an plugin exception
Similar question here: https://www.examtopics.com/discussions/microsoft/view/140011-exam-pl-400-topic-6-question-38-discussion/ "Limit the time period that external calls will expect a response within plug-ins." https://learn.microsoft.com/en-us/power-apps/developer/data-platform/best-practices/business-logic/set-timeout-for-external-calls-from-plug-ins#symptoms https://learn.microsoft.com/en-us/power-apps/developer/data-platform/best-practices/business-logic/