Have an amazing solution built in RAD Studio? Let us know. Looking for discounts? Visit our Special Offers page!
C++

RAD Studio 10.3.1 HTTP and SOAP Clients Enhancements

In RAD Studio 10.3, Embarcadero moved the SOAP client implementation to the HTTP client library for all platforms, given the issues support HTTPS with the previous architecture (based on Indy) on mobile platforms. On Windows, there was already a native implementation, but based on an older Windows HTTP client library. 

This change caused some incompatibilities, we have started addressing in 10.3.1 — considering this is a non-interface breaking features, so we added class helpers rather than changing the original code in some cases.

Managing Certificates

The biggest change in 10.3 was that the THTTPReqResp implementation was replaced using the THTTPClient class, which offers certificates support with a slightly different interface and set of features. Now in 10.3.1 there are several implementation changes in the System.Net.HttpClient.Win.pas unit. Here are more details:

  • To simplify certificates management, there is now a new property editor in the IDE for the THTTPReqResp class ClientCertificate property — see image below
  • The method THTTPReqResp.DoNeedClientCertificate of the Soap.SOAPHTTPTrans  unit had missing instruction — notice that this is the method underlying the new 10.3 OnNeedClientCertificate event of THTTPReqResp, you can use to customize the behavior
  • The source code of the unit Soap.Win.CertHelper.pas has been added to the source (in a folder like C:Program Files (x86)EmbarcaderoStudio20.0sourcesoap)

Quality portal issues addressed by improvements in this area include RSP-23195, RSP-23177, RSP-23344, RSP-23076, and RSP-23225. Here is the new property editor, which hooks into Windows platform features

HTTP Decompression

The second significant enhancement in 10.3.1 compared to 10.3 for HTTP client and SOAP clients is the improved support for HTTP client library decompression. There are now new types in System.Net.HttpClient:

This feature is exposed in new runtime properties of a few related classes, which control automatic decompression of response building:

When this property is set, the corresponding “Accept-Encoding” header will be included into request, and response building will be automatically decoded. The actual implementation is platform dependent and currently supported on Windows and Linux. On iOS, macOS, and Android platforms decoding is performed automatically by the operating system.

Enjoy RAD Studio 10.3.1

That’s all for now. If you missed an overview of what’s in 10.3.1, read David’s summary at https://community.idera.com/developer-tools/b/blog/posts/key-improvements-in-rad-studio-10-3-1


Reduce development time and get to market faster with RAD Studio, Delphi, or C++Builder.
Design. Code. Compile. Deploy.
Start Free Trial   Upgrade Today

   Free Delphi Community Edition   Free C++Builder Community Edition

About author

Marco is one of the RAD Studio Product Managers, focused on Delphi. He's the best selling author of over 20 books on Delphi.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

IN THE ARTICLES