Communication Toolkit for TCP/IP in Windows, Library and components for tcp/ip communication. Protocols ZMODEM, YMODEM, KERMIT, MODBUS, 3964, RK512, LSV2. Supporting NET, C#, VB Net

Protocols ZMODEM, YMODEM, KERMIT, MODBUS, 3964, RK512, LSV2. Supporting NET, C#, VB Net. Communication Toolkit for TCP/IP in Windows, Library and components for tcp/ip communication.

SuperCom™ TCP/IP
The Communication Toolkit for TCP/IP in Windows Vista, Windows XP/2000/NT/ME/9x


Communication Solutions by ADONTEC
Software Development, COMM Tools, RS-232, TCP/IP, ISDNSuperCom Suite DEMO (Serial, ISDN, TCP/IP) trial version ?

Version 6.5

Looking for ZMODEM over TCP/IP ?

SuperCom for TCP/IP handles data communication over TCP/IP networks (internet and intranet).

component tcp/ip communications library, protocol ZMODEM, KERMIT, 3964, 3964R, RK512, LSV2, network data communication class library

SuperCom for TCP/IP provides an optimized Low Level Engine, which handles simultaneously connections, buffers data and generates events. This engine provides maximum functionality but reduces CPU load to minimum.

The Low Level Engine will trigger only wanted events. Unwanted events can be disabled reducing overhead.

A single application can run up to 255 (please ask if more needed) connections simultaneously. Nearly any combination possible e.g. 1 server and 254 accepted connections, only clients or different server and clients.

The available SuperCom functions and protocols are also available over TCP/IP i.e. ZMODEM, YMODEM, XMODEM, KERMIT, ASCII, 3964/R, RK512, MODBUS and LSV/2 (for the use of the 3964/R and/or LSV/2 protocol the SuperCom 3964/R Protocol Engine and/or the LSV/2 Protocol Module is also needed).

The easy to use and portable SuperCom API enables fast implementation of TCP/IP applications. A client or server application can be build in short time. Most functions and features are well known from the Serial and ISDN communication library.

The use of the common SuperCom API enables a move from RS-232 to TCP/IP or from ISDN to TCP/IP to be very smooth and quick. In most cases by simply switching the low level SuperCom DLL.

Complete samples for client and server applications are included in source code and for many developing environments and compilers.

Using the SuperCom Suite enables one single application to handle simultaneously connections through RS-232, TCP/IP and ISDN. Building applications like a gateway from RS-232 to TCP/IP is now very easy done.

Functions List
A DUAL API is included (DLL API and ActiveX API) .
DLL API ActiveX API
Features List Features List
Functions Properties

The box includes
 - Dual API for Windows (WIN32)
 - ActiveX and DLL Samples
 - Documentation

See also the the available product range for details.

Check our special offer, the Serial to TCP/IP GateWay software (COMMServer, PortServer) developed with SuperCom. This is Free Bonus software (incl. source code) offered to latest SuperCom Suite owners.

Supported Compilers
C#, C++, Visual Basic net, Visual C++, Visual Basic, Borland C/C++, C++ Builder, Delphi, VBA, LabView, FoxPro and DLL and/or ActiveX capable Windows developing environments (.NET ?).

License Information
Executables developed using SuperCom can be distributed royalty free.

Requirements
PC with Windows 9.x/Me/NT/2000/2003/XP/Vista.

 

Sample - Connecting

Spending some time with the following sample shows how easy it is to use the SuperCom API. To make the use of SuperCom the same easy as possible within (nearly) any common IDE or programming language was an ultimate goal of our engineers.

DLL API
In order to receive events the application must provide an InfoProc*. The InfoProc is optional but very handy in many situation. Using the InfoProc the application can receive progress information, get informed about the time left to complete a call or even cancel the connection attempt.

Client Connection - InfoProc

   int InfoProc(Com, Action, TimeLeft, Data)
   {
      if (Action==acCONNECT_INFO)
      {
         // Received periodically, while in progress
      }
      if (Action==acCONNECT_OK)
      {
         // Connected !
      }
      if (Action==acCONNECT_FAILED)
      {
         // Connection attempt failed
      }

      return infContinue;

   }
      :
      :
     // init  ...
   ComInit(Com);

     // dial  ...
   RS_Dial(Com, "www.adontec.com:80");

     // now connect ...
   Done = RS_Connect(Com, SEC_60, , InfoProc);
  
   C/C++    C#    Delphi    Visual Basic  

The connection set-up can run completely in background. The application receives events about the progress.

Want to compare the above code with the one used for serial modem connections or ISDN to see what is different?

ActiveX API

ActiveX: Client Connection - OnModem

  Private Sub SCom1_OnModem(ByVal Action As Integer, ByVal TimeLeft As Long)

     If Action = SCOM_CONNECT_FAILED Then
       Form4.CTL_INFO.Text = "CONNECT FAILED"
     End If

     If Action = SCOM_CONNECT_OK Then
       Form4.CTL_INFO.Text = "CONNECTED"
     End If

     If Action = SCOM_CONNECT_INFO Then
       Form4.CTL_INFO.Text = "CONNECT INFO"
     End If

  End Sub

      :
      :

  SCom1.PortOpen=True ' setup a link
      :
  SCom1.ConnectAddress="www.adontec.com:80"  ' server address and port
      :
  SCom1.Connect=True ' now connect

      :

  

Setting up a connection runs completely in background. The application receives events about the progress.

 

It does not matter which communication link it uses (Serial, TCP/IP or ISDN) it will require one common SuperCom API to use. The learning curve is extremely low with SuperCom!

 


Home    Back
Modified at:

ADONTEC
It Simply Works!