Site Map Email Us Home
 
All Products
Clever Internet Suite
Clever Internet .NET Suite
Clever Internet ActiveX Suite
Clever Keyboard Indicator
Database Comparer
Database Comparer VCL
Database Comparer ActiveX
Interbase DataPump
Subscribe and receive email notifications on all major releases and other important events.
Your Name:
Your Email:
 

Best Offer for Delphi / C++ Builder Developers

 

Buy FIBPlus at discount price !

 
 
Products Articles Downloads Order Support
Components  | Samples  | FAQ  | Download  | Order  | History 
 

HTTP Client

Features  | Detailed Description 
 

The HTTP Client is a component from the Clever Internet Suite library.
This component provides a simple way for developing customized web client applications. It allows submitting or retrieving the information from a web server to your local computer via HTTP protocol as specified in RFC 1945 and RFC 2616 documents.

Features:

  • All HTTP methods: GET, POST, PUT, HEAD, DELETE
  • HTTP and HTTPS protocols: TLS / SSL mode
  • Cookies, Redirects, GZIP compression
  • Partial download mode: resume broken / aborted downloads
  • Authenticate both on Proxy, and on protected WEB pages: Basic, Digest, NTLM, Negotiate
  • Custom request methods and enhanced status codes
  • Free one year upgrades and support

File upload support

With HTTP Client component you can easily upload files to a web server for processing by a CGI or servlet.
The HTTP Request component creates the request data to be sent to the server with the POST method:

clHttpRequest1.AddSubmitFile('c:\uploads\document.zip');
httpClient.Post('http://www.domain.com/upload.asp', clHttpRequest1, response);

stream := TFileStream.Create('c:\4upload\filename.ext', fmOpenRead);
try
   httpClient.Put('http://www.domain.com/uploads/filename.ext', stream, response);
finally
   stream.Free();
end;

Proxy server support

The HTTP Client fully supports proxy authentication. You can specify the proxy server, proxy user and password and the component will automatically perform the negotiation process and use the most secure authentication method.

HTTP Header management

The HTTP Client component gives you complete control over the headers being sent. You can easily define any HTTP request headers for submission to a WEB server or retrieve headers from a HTTP response.

httpClient.Request := clHttpRequest1;

httpClient.Request.Header.Range := 'bytes=1024-4096';
httpClient.Get('http://www.domain.com/downloads/install.zip', stream);

ShowMessage(httpClient.ResponseHeader.ContentType);

Samples in Delphi and C++Builder

Please see the Demos code (HttpClient, HttpClientSSL, HttpClientProxy) and also the indexed Help documentation provided with the Clever Internet Suite installation to learn more about using this component in your application.

Complete Delphi source code

When Purchasing the Clever Internet Suite you receive the full sources for all suite components and also free unlimited support.

Interested?

 
Home  | Site Map  | Products  | Articles  | Downloads  | Order  | Support
 
    Copyright © 2000-2007