本文介绍了.NET TAPI接口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我被要求写一些.NET code,与使用TAPI API电话系统整合。我看没有。NET接口,这方面的API( http://support.microsoft.com/kb/841712 )。是否有良好的第三方.NET接口TAPI?或者,任何人都可以点我在正确的方向开始了吗?

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.com/kb/841712). Is there good third party .NET interface for TAPI? Or can anyone point me in the right direction to get started?

推荐答案

没有工作外的开箱即用的接口,从.NET的TAPI,和COM-互操作是不可靠的工作,这是正确的。但是,有一个C ++ / CLI TAPI 3.1包装.NET 2.0可以免费从 Julmar (你只必须给予信贷)。在那里寻找ITAPI3。它们还包括一些基本的呼入/呼出的样本。

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.

如果您想对TAPI 2.X code,那么你可以使用海伦提供的包装警告和敏捷软,可以从安德烈亚斯·马沙尔的TAPI FAQ网站下载。看到这个新闻组帖子为链接。这也是免费的使用(检查自述)。

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).

这篇关于.NET TAPI接口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 00:07