PL-400 Exam QuestionsBrowse all questions from this exam

PL-400 Exam - Question 303


A company uses a custom Power Platform app to create and manage programs. The company has a public website that uses TLS 1.0.

The public website is outside of the corporate domain. The website uses POST requests to save data.

You need to automate the transfer of data to the public website.

What should you use? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Exam PL-400 Question 303
Show Answer
Correct Answer:
Exam PL-400 Question 303

Discussion

8 comments
Sign in to comment
Pl4002024
Aug 31, 2024

This question is ultra retarded. Nothing concrete just random shit and they expect for a right answer. Microsoft is a joke!!!

Alduzz1985
May 28, 2023

I think PreImage isn't available for Create Messages. I think should be "Register a step "

nwmc
Aug 15, 2023

I agree. preimage isn't available for Create message. https://learn.microsoft.com/en-us/power-apps/developer/data-platform/register-plug-in

lawlrmk
Jun 11, 2024

It's A) Create a plug-in that uses a secure connection Reason: As you can only choose one option, Create Az-Function and Async Webhook don't work as standalone. Power Automate is not an option as it is a "instant" trigger. We are looking for a automation as describe in the question. Only Plug-in is viable. B) Register a step for the program create message step by using the Plug-in Registration Tool Reason: As we choose Plug-in in A) we have only two options left that concern Plug-ins. As others commented, there is no pre-image for create messages. So it has to be the other option.

ziggy1117
Aug 7, 2023

why not use Power Automate?

NyarukouSAMA
Sep 25, 2023

I agree, but the option for the PA in the second question does not seams good to me. The only variant here is suitable for both answers (making a synergy is a plugin + step). As for me - I think the best variant is to use Azure Function + WebHook + AsyncStep - but there are no such options except the first one. Therefore: Plugin + Step

A_A_C
Dec 16, 2023

I don't think you can bypass TLS 1.0 issue with Power Automate

A_A_C
Dec 16, 2023

I don't think you can bypass TLS 1.0 issue with Power Automate

At09
Oct 3, 2023

Power Automate for both

A_A_C
Dec 16, 2023

I don't think you can bypass TLS 1.0 issue with Power Automate

loftuscheek
Feb 26, 2025

A concise way to see it is that Dataverse/Power Platform no longer supports calling endpoints secured only by TLS 1.0, so you need a “bridge” that can handle TLS 1.0 on the public website’s side. The usual solution is: Create an Azure Function App to receive program data and then securely post it to the old TLS 1.0 endpoint. Register a step for the program create message by using the Plug-in Registration tool so that each time a new program record is created in Dataverse, the plug-in calls your Azure Function.

Juan0414
Mar 6, 2025

What a weird question. I think that maybe the option here is to have a plug-in that calls the Azure function to send the data to the public website. So, I would go with. - Create an Azure Function app - Register a step for the program create message step by using the plug-in registration tool

itmaxuser
Apr 15, 2025

Move program data to the public website: Create an Azure Function app: Azure Functions are ideal for handling asynchronous tasks and integrating with external services, making them a good fit for moving data to the public website. Package the program details: Use the Power Automate HTTP request trigger: This is the most suitable choice for sending HTTP requests from Power Automate, and it can be used to POST data to the public website.