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  | Download  | Order  | History 
 

HTTP Client for .NET

Features  | Detailed Description 
 

The HTTP Client is a component from the Clever Internet .NET 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:

httpRequest1.Items.AddSubmitFile("filename", "c:\\uploads\\document.zip");
httpClient.Post("http://www.domain.com/upload.asp", httpRequest1, response);

using(FileStream stream = new FileStream("c:\\4upload\\filename.ext", FileMode.Open, FileAccess.Read)) {
   httpClient.Put("http://www.domain.com/uploads/filename.ext", stream, response);
}

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.

httpRequest1 = new HttpRequest();
httpClient.Request = httpRequest1;

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

string contentType = httpClient.ResponseHeader.ContentType;

Samples, including WinForm clients with full C# and VB.NET source code

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

Complete C# source code

When Purchasing the Clever Internet .NET 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