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

Powerful Internet Resource Access Components For Delphi/C++ Applications On Windows

Accessing internet resources becomes a common feature in modern desktop windows applications. Thinking how to build these capabilities in your Delphi/C++ Applications? WINSOFT made a Flexible component suite that helps you to access internet resources with FTP, and HTTP/HTTPS protocols. It uses the Standard Microsoft WinInet API.

Features:

  • It supports FTP, HTTP, and HTTPS protocols.
  • Well suited for accessing REST Services.
  • Flexibility to set AutoDial options for Modem dial and hang-up internet connection.
  • The session access type is configurable.
  • Able to navigate and manipulate directories and files on an FTP server.
  • Caching of files for FTP resources can be controlled.
  • Built with action for Error handling mechanism.
  • Able to set and get cookies from a persistent cookie database.

Versions Supported: Delphi 5 – Delphi 10.4/C++ and Lazarus 2.0.8

Platforms: Windows;  

Installation Steps:  

Prerequisites: Ensure 6.7 MB minimum free space available in the system.

  • Download WinInet Setup and Right-click Open.
  • Read the Information Window about features, installation, and copyright. Click Next.
  • Browse for the custom destination folder to install and click Next.
  • Browse for the custom Start Menu folder and click Next. You can ignore creating by clicking the checkbox Don’t create a Start Menu folder option.
  • Review your folder settings and click Install. You can click Back to change your folder settings.
  • Once Installation Progress is done click Finish.
  • Ensure the WinInet Component suite files are shown in the chosen Start Menu Folder by clicking Windows Start Menu.

Installation Steps Demo: 

How to build your application with WinInet Components: 

1.Open RAD Studio 10.4, Navigate to Components bar -> Internet. Check the WinInetSuite Components installed as shown.

TINetConnection: Connected property is true when connected to the internet and State property shows the corresponding connected state. This component enables you to dial and hangup modem with options provided retrieves the connected state. It has methods to AttempConnect, CheckConnection, Connect, Dial, Hang-up. Enabling Internet functionality.

TINetURL: It encapsulates WinInet Uniform Resource Locator functions. Use this component, for manipulation of URLs. It has properties like CanonizedURL, HostName, Port, Username, Password, URL, URLPath, Scheme. Handling Uniform Resource Locator.

TINetSession: Enables you to set Internet Initialization parameters. It encapsulates Internet handle returned by InternetOpen WinInet function.

  • Active: Open or close a session.
  • Agent: Specifies the name of the application, used as user agent in HTTP or FTP protocol.
  • Flags: Internet Flags, Offline or Async.
  • ProxyByPass: List of IP address shat should not be routed through the proxy.
  • ProxyName: Name of the proxy server.
  • SetInternetOption : Use this method to set internet options like cache control, content decoding. Options Flags
  • There are session events to perform operations BeforeOpen,AfterOpen,BeforeClose,AfterClose. OnCallBack Occurs when progress is made during an internet operation.
  • OnError Event TINetAction parameter helps to abort the application and display or without displaying an error message.

TINetHttp : Access Resources on the World Wide Web using HTTP Protocol.

<strong>TINetHttp Properties<strong>
  • Use Active to open or closes the connection.
  • Use the Flags Property to Set HTTPFlags. Use HttpHandle property for HTTP requests.
  • Customize the Request using the SecurityFlags for Http Request.
  • Predefined Session will be used if the Session property is empty.
  • URL, URLPath, UserName, Password can be preconfigured for the request. Use Verb property to use in the request.
  • Use QueryInfo to retrieve header information associated with HTTP requests.

2.Drag and Drop TINetHttp component or alternatively use WINet.pas file to include.

3.A simple Code snippet to access the Internet resource using the TINetHttp component.

<strong>TINetFtp Properties<strong>

TINetFtp : Component to navigate and manipulate directories and files on a FTP Server.

  • Use Active to open or closes the connection.
  • Use the CacheFlags Property to control the caching of files.
  • Use Handle,FileHandle,FindFileHandle properties returned by InternetConnect,ftpOpenFile,ftpFindFirstFile functions respectively.
  • the predefined session will be used if the session property is empty.
  • Configure the ftp TransferType.
  • Use AvailableData to read the number of bytes returned.
  • There are events to perform operations BeforeOpen,AfterOpen,BeforeClose,AfterClose. OnCallBack Occurs when progress is made during an internet operation.
  • OnError Event TINetAction parameter helps to abort the application and display or without displaying an error message.

4. Drag and Drop TINetFTP component or alternatively use WINet.pas file to include. Code snippet to Connect with FTP and set current directory.

5.Creates a directory with the provided name.

6.Removes the Selected Directory.

7.Puts the file to the current directory.

8.Retrieves a file from the FTP server and stores it under the specified file name, creating a new local file.

9.Renames a file stored on the FTP server.

10.Deletes a file stored on the FTP server.

TINetCookie : SetCookies and retrieve cookes from persistent cookie database. Used to maintain the state. information of the client.

  • CookieData: Cookie Data.
  • CookieName: Name of the cookie.
  • Url: Cookie associated Url.

11.To set cookie,

12.To get cookie,

Sample Application Demo:

Conclusion:  It’s easy to access internet resources using HTTP and FTP protocols in your applications. WINSOFT helped us to easily configure and use these components to build faster applications.

Head over and check out the full WINSOFT WinInet Component Suite for Access in Delphi and C++Builder.


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

Leave a Reply

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

IN THE ARTICLES