Skip to content

Dynamics 365 Business Central: HttpClient and remote certificate validation future changes.

I think that everyone of you know that the AL HttpClient data type provides a data type for sending HTTP requests and receiving HTTP responses from a resource identified by a URI.

A very basic piece of AL code that sends a GET request to an endpoint and return a response can be defined as follows:

    procedure GetResponseFromUrl(URL: Text): Text
    var
        HttpClient: HttpClient;
 ...

Continue Reading demiliani’s Article on their blog

Dynamics 365 Business Central: HttpClient and remote certificate validation future changes.

I think that everyone of you know that the AL HttpClient data type provides a data type for sending HTTP requests and receiving HTTP responses from a resource identified by a URI. A very basic piece of AL code that sends a GET request to an endpoint and return a response can be defined as…

Blog Syndicated with demiliani’s Permission

Leave a Reply