Site Map Contact Us Home
E-mail Newsletter
Subscribe to get informed about
Clever Components news.

Your Name:
Your Email:
 
SUBSCRIBE
 
Previous Newsletters
 




Products Articles Downloads Order Support
Customer Portal      

Async Client

Features | Detailed Description

The Async Client is a component from the Clever Internet Suite library.
This component represends asynchronous TCP client which works in background without interfering with the main application thread.

Available in .NET, VCL and ActiveX editions.

Features:

  • Asynchronous data exchange 
  • Support for TCP and UDP communication 
  • Allows implementing custom TCP and UDP client 
  • TLS/SSL support 
  • Free one year upgrades and support

TelNet client in just few lines of code

With Async Client component you can easily implement any TCP-based client, including TelNet.

// [Delphi] 
cmdStream := TStringStream.Create('display');
clAsyncClient1.WriteData(cmdStream);
......
//event handler for the OnRead event
procedure TForm1.clAsyncClient1Read(Sender: TObject);
begin
      clAsyncClient1.ReadData(FResponseStream);
end;

// [C#] 
using (StringStream cmdStream = new StringStream("display")) {
      asyncClient1.WriteData(cmdStream);
}
......
//event handler for the Read event
private void asyncClient1_Read(object sender, EventArgs e) {
   asyncClient1.ReadData(responseStream);
}

Samples, including WinForm clients with full source code

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

Includes support for Delphi, C++Builder, C#, VB.NET and Javascript.

Complete Delphi and C# source code

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

Interested?

 

    Copyright © 2000-2024