Create an application using TAPI on windows 7 - wh

2019-07-22 07:24发布

does it working with it and which is the good start for TAPI...

i want to create an application which automatically answer/record incoming call and also call to someone recorded message.

want this in .net (asp.net or c# desktop no problem).

2条回答
乱世女痞
2楼-- · 2019-07-22 07:46

I'm trying to work with TAPI, C# and 64bit Windows 7, too. I wrote a very small program which uses (the ITAPI assembly from codeplex).

theTextBox.Clear();
foreach (TAddress addr in tapi.Addresses){
theTextBox.Text += addr.AddressName + "\n";
}
theTextBox.Refresh();

tapi is a TTapi object and is initialized in the Form's constructor.

The resulting list seems to be some default list which painfully lacks the LAN TAPI Service Provider I installed. I currently have low hopes that there is a well working wrapper for this.

查看更多
闹够了就滚
3楼-- · 2019-07-22 08:06

It seems unlikely that Microsoft would have removed TAPI from Windows 7 so ultimately this will depend on the telephone system and drivers you are using. Avaya and Cisco usually provide good drivers. We have an Avaya phone system in work and a few people using Windows 7 with no problems AFAIK.

There is little support for using TAPI from managed code, but it is possible using wrappers or 3rd party components (see Microsoft Knowledgebase article 841712).

This post might point you in the right direction.

查看更多
登录 后发表回答