Questions tagged [tapi]

The Telephony Application Programming Interface (TAPI) is a Microsoft Windows API, which allows computer telephony integration and enables PCs running Microsoft Windows to use telephone services.

The TAPI was introduced by Intel and Microsoft in 1993.

It defines a client interface and an interface for the TAPI Service Provider (TSP). TSPs are sometimes also named TAPI-drivers. TSPS are created by telephone system manufacturer.

The TAPI itself allows the integration of telephony systems and services into the Windows OS.

The TAPI 1.x, 2.x define a procedural plain C interface and with TAPI 3.0 a Component Object Model (COM) interface was added.

187 questions
0
votes
2 answers

How to make outgoing calls in c#

I am trying to make outgoing call from C#.net 4.0, with pre-recorded message.I have hiro usb modem h50113 already in the system to detect caller id. I tried googling and found out few links 1.OZEKI 2.TWILIO 3. TAPI in OZEKI I need to get SIP…
mark
  • 623
  • 3
  • 21
  • 54
0
votes
1 answer

Trendnet tfm-561u-Modem Management Disabled

As per my previous question , I purchased Trendnet TFM-561U device. I have WIN8 so there was no driver for it on the CD , I googled and found out way to instll WIN7 driver on WIN 8 from this LINK Here. At first it worked fine I got the RING…
mark
  • 623
  • 3
  • 21
  • 54
0
votes
1 answer

Error when traying build Tapi3 c++ example using migw compiler in eclipse

i have a probleme when i try to build this tapi3 c++ example using mingGw w64 compiler in eclipse, i have followed the ewample from msdn step by step #include #include using namespace std; int main() { // Initialize COM. …
user820688
  • 719
  • 2
  • 13
  • 27
0
votes
1 answer

How to select audio device for recording in C# using MciSendString

I'm trying to record audio input from a modem which I have managed to get to make calls via the TAPI api. I can record using MciSendString but don't know how to select the modem as the audio input device (at the moment it defaults to selecting the…
silverzx
  • 1,209
  • 4
  • 14
  • 18
0
votes
1 answer

TAPI incoming call

I am using the Async Professional library in delphi 6 to perform tapi calls to an Avaya Ip Office call center. I have succesfully performed outgoing-internal calls via the vcl components (ApdTapiDevice1,ApdTapiStatus1,ApdComPort1). I'd like to…
gman
  • 27
  • 7
0
votes
1 answer

Tapi code for analog phone line

I have Bell phone line which is analog not digital. I am able to send faxes through windows fax and scan software provided by Microsoft but my tapi application, which works fine with digital lines (like magic Jack), is not working with my Bell phone…
khalid
  • 1
  • 1
0
votes
1 answer

ATAPI interactive MediaModes and c#

I had been trying to establish a call using ATAPI and c# . although when I am opening a line using my modem Conexant USB CX93010 ACF and check for the supported MediaMode i got this: enter image description here but when I am trying to open a line…
Mahmoud Heretani
  • 555
  • 1
  • 6
  • 17
0
votes
1 answer

Establish a landline call in C# using Tapi

I have been trying to make a calling application using C# that enables me to make a landline call from a PC with a modem. I found ATAPI and TAPI but so far I was not enable to make a call with those libraries. Can anyone give me sample code for…
Mahmoud Heretani
  • 555
  • 1
  • 6
  • 17
0
votes
1 answer

ExTAPI: lineRegister returns before line is registered

I am using the extended TAPI function lineRegister to register a GPRS radio on the network after powering the radio on using lineSetEquipmentState. The lineRegister function is returning successfully before the network is actually registered. The…
Trevor Balcom
  • 3,766
  • 2
  • 32
  • 51
0
votes
1 answer

How does a C function callback work?

I'm a bit confused with this definition in an example provided by microsoft using TAPI in Windows Mobile 5.0. What does CALLBACK do in this case? What is the purpose of it? BOOL CALLBACK DialingProc (HWND, UINT, WPARAM, LPARAM); The implementation…
Dayan
  • 7,634
  • 11
  • 49
  • 76
0
votes
1 answer

TAPI, C#: Detecting key presses on a phones keypad

I'm attempting to set up a system where I phone a number, and then to confirm it isn't an answering machine I want the recipient to press a phone key to forward the call. The trouble is I'm struggling to find the event that gets raised for phone key…
Ryan Hargreaves
  • 267
  • 3
  • 16
0
votes
1 answer

An invalid handle was specified

I've asked a related question before, but I have more information and a new question now. I'm trying to use TAPI3 in my own program on Win8 64bit, however whenever tapi.shutdown() is called or the item is disposed, all other services inside the same…
Ryan Hargreaves
  • 267
  • 3
  • 16
0
votes
2 answers

tapisrv.exe hangs other processes when terminating from a developed program

So I've developed a program in C# in VS2013 that utilizes TAPI to make a phone call on 1 button. Originally I used the TAPI3 library, but after discovering its not in a working state I switched to JulMar's TAPI 2 wrapper. I'm using Windows 8 64…
Ryan Hargreaves
  • 267
  • 3
  • 16
0
votes
1 answer

C# - Using TAPI (Specifically TAPI3Lib) to record a phone calls length

So I've built in to a solution a very basic TAPI function that makes a phone call to a given number. I'm not particularly strong with TAPI code, and was wondering if there is any way to record a phone call length using the c# functions? My initial…
Ryan Hargreaves
  • 267
  • 3
  • 16
0
votes
0 answers

TAPI on Windows Mobile 6.5: Incoming Calls distracted by default OS dialer

I'm building a app that could allow user to make calls and receive incoming calls. The application is build using OpenNETCF TAPI API. There is no issue for making calls so far. But during incoming call, the OS own dialer will pop up when there's an…
ipohfly
  • 1,959
  • 6
  • 30
  • 57