.NET TAPI Interface

前端 未结 3 847
迷失自我
迷失自我 2020-12-16 05:01

I’ve been asked to write some .NET code that integrates with a phone system using a TAPI API. I read that there is no .NET interface for this API ( http://support.microsoft.

相关标签:
3条回答
  • 2020-12-16 05:28

    Actually, TeleTools has an excellent set of controls for any TAPI or SIP device and Visual Studio. The new version has a a new set of controls that is even easier to use for 90% of the applications out there so you don't have to learn a large set of events, methods and properties. A wrapper around TAPI is still way too much work than a good set of controls that do most of the work for you. Most applications like caller id and dialing are only a few lines of code. In addition, ExceleTel is the only telephony company with TeleScope, which is a prototyping, logging, learning tool that is unique. The logging will save you a lot of time and let you see exactly what your device/phone line/application is doing.

    ExceleTel has been around for over a decade working with TAPI and consulting with the manufacturers who write the TAPI drivers (TSPs) to make their devices work. You can find a lot of information on the website, www.exceletel.com, and you can get more info on the tapi for win32 newsgroup where we all share information.

    FULL DISCLOSURE: Fred works for Teletools (http://www.microsoftfaqs.com/msg/14811958.aspx)

    0 讨论(0)
  • 2020-12-16 05:48

    There is no working out-of-the-box interface from .NET for TAPI, and COM-Interop is not reliably working, that's right. But, there is a C++/CLI TAPI 3.1 wrapper for .NET 2.0 freely available from Julmar (you just have to give credit) . Look there for ITAPI3. They include also some basic inbound/outbound call samples.

    If you want to code against TAPI 2.x, then you could use the wrapper provided by Helen Warn and Agile-Soft which can be downloaded from Andreas Marschall's TAPI FAQ site. See this newsgroup post for the link. It's also free for use (check the readme).

    0 讨论(0)
  • 2020-12-16 05:48

    Even C4F's tapi is cool to work. this Tapi is a good dll to work with .NET . It also has some sample which you can try out.

    0 讨论(0)
提交回复
热议问题