C # Connecting to Siemens Hipath 3000

I need to connect to the Siemens Hipath 3000 to record and output reports. Has anyone used C # to do this, if you did it in another language, do you have any suggestions. I am currently looking at tapi to connect to it.

thanks

+4
source share
2 answers

For some documents for Siemens HiPath / TAPI see http://wiki.siemens-enterprise.com/wiki/HiPath_3000_open_interfaces

Some starting points for TAPI through .NET:

I am not familiar with the protocols Siemens HiPath offers, but it can offer syslogd and / or SNMP integration for logging ... some protocols (IIRC, e.g. TAPI) must be licensed separately from Siemens ...

+3
source

It is best to configure HiPath 3000 to send CDRs over the local network to the IP address you specify. This configuration is easy through HiPath 3000 Manager E.

You simply write a TCP listener to receive a connection to the PBX and analyze incoming call records (CDRs).

Successfully done this with Avaya, Panasonic, and other PABX products, including the HiPath 3000 Series.

0
source

Source: https://habr.com/ru/post/1384658/


All Articles