• ASN iconCSTADLL

    CSTADLL is a collection of software for the Microsoft .NET platform (2.0 or higher) that allows a developer to perform ACSE and CSTA operations for any of the three CSTA phases.

    The CSTADLL kit includes the following:

    1. A Microsoft .NET DLL that contains the following:
      1. Class definitions generated using ASN1C from the ACSE and CSTA ASN.1 specifications for all three phases.
      2. Helper classes to assist with some common CSTA operations and manage a TCP/IP session with a PBX device.
      3. Helper classes for several specific PBX devices, as listed below.
    2. Two client programs with their source code that can serve as samples. One client is a console mode client written in C#. The other client is a simple GUI client written in Visual BASIC.
    3. Several additional sample programs.
    4. The class definitions generated by ASN1C from the ACSE and CSTA ASN.1 specifications for the three phases.
    5. The ACSE and CSTA ASN.1 specifications used to generate the classes.
    6. Documentation, both in PDF and HTML format.

    One year of support is included with the purchase of CSTADLL.

    CSTADLL specifically includes support for the following PBX devices:

    1. Alcatel 4400
    2. Alcatel OXO
    3. Panasonic KX-TDA
    4. Panasonic KX-TDE
    5. Panasonic NCP
    6. Siemens CAP
    7. Siemens Hicom 300
    8. Siemens Hipath 3000
    9. Siemens Hipath 4000
    10. Siemens Realitis
    11. Tadiran Coral

    The generic (i.e., non-device-specific) helper classes included in the DLL should be sufficient to allow developers to work with many standard PBX devices that aren't given in the list above.

    The helper classes provide methods for several common ACSE and CSTA operations. Examples include establishing an ACSE session with a PBX, instructing a PBX to make a call, transfer a call, query a device, etc.

    The helper classes also provide the ability for a client program to specify an asynchronous callback function that will be invoked whenever asynchronous messages are received from the PBX. A common use for this feature would likely be CSTA monitoring functions, in which messages with monitor data are sent asynchronously to the client from the PBX.

    The CSTADLL software can be used in multiple ways, depending on the needs of the client program. The diagram below illustrates one way of using the CSTADLL software. In this scenario a client program is using just the helper classes to do ACSE and CSTA operations and communicate with the PBX. This way of using the software would allow the client program to perform some common ACSE and CSTA operations and find out if they were successful. It would not allow the client program to see any content that the PBX returns in the form of an ACSE or CSTA message. It would also not allow the client program to send any messages to the PBX for which the CSTADLL software doesn't expose a helper method. The DLL that's included with the CSTADLL software is identified as the all-phases DLL in this diagram.

    The DLL that's included with the CSTADLL software

    This next diagram shows the client program using both the helper classes and the generated classes. This approach allows the client program to view content that the PBX sends back, and it also allows the client program to send messages for which no helper method is exposed by the all-phases DLL.

    the client program using both the helper classes and the generated classes

    This last diagram shows the client program using only the generated classes that are within the all-phases DLL. This approach might be useful if the client program needs to manage its own communication with a PBX device. The PBX device, for example, might not support TCP/IP communication or might work better if a different communication paradigm is used.

    the client program using only the generated classes that are within the all-phases DLL