Click here to Skip to main content
15,881,852 members
Articles / Programming Languages / C#
Article

TAPI 3.0 Application development using C#.NET

Rate me:
Please Sign up or sign in to vote.
4.63/5 (93 votes)
15 Jul 20054 min read 1.6M   44.4K   233   436
This is a sample telephony application which will help you to develop applications using TAPI 3.0 API and C#.NET. Here basic knowledge about TAPI is assumed.

Sample Image

Introduction

This is a C# program which will exemplify the procedure which needs to be followed while doing TAPI programming using TAPI 3.0. Hence it can also be useful for VB.NET developers seeking TAPI 3.0 sample code for .NET. Here basic knowledge about TAPI and other related terms is assumed. To have more knowledge on TAPI 3.0, contact me on my email address or refer to the help provided in MSDN.

Background

Hello, myself Gohel Devang M., 20 years old, Information Technology student. This is my first attempt to put some sample code on any site so if you do have any problems mail me at devang.mg@gmail.com.

This is a sample code to interface TAPI 3.0 API using .NET platform and C# as language. So people interested in developing telephony applications using C# will find this very useful. I was inspired to do this because I was not able to find such code on this site.

Initial steps

The first thing you need to start working on TAPI 3.0 API is to add the references to your project. To do that first create a new project or open an existing project, then right click on the solution file in Solution Explorer. This will open a dialog box showing three tabs as below:

Image 2

Then click on Browse button and select the tapi3.dll file from your windows\system32 or windows\system directory and click OK. Then press OK in the dialog box that had popped when you select Add references from the right click popup menu of the Solution Explorer.

Now you are ready to work with TAPI 3.0.

Using the code

The second thing you need to do is create the TAPI objects to initialize the TAPI 3.0 TSP (TAPI Service Providers). To have more information on TSP and what TAPI is all about, please refer to help provided in the MSDN .NET documentation. The code below is a declaration of the TAPI object and addresses the interfaces that will hold the addresses which are responsible for call handling, and basic call control interface which will hold the reference to the object that will be responsible for handling basic operations of the call.

C#
private TAPIClass tobj;
private ITAddress[] ia=new TAPI3Lib.ITAddress[10];
private ITBasicCallControl bcc;

The code below is responsible for initializing a TAPI object so that it can be used by our application. The main functions are:

  • Initialize() will initialize TAPI.
  • EnumerateAddresses() will give the list of available TSPs.
C#
void initializetapi3()
{
    try
    {
        tobj = new TAPIClass();
        tobj.Initialize();
        IEnumAddress ea=tobj.EnumerateAddresses();
        ITAddress ln;
        uint arg3=0;
        lines=0;
    
        cn=new callnotification();
        cn.addtolist=new callnotification.listshow(this.status);
        tobj.ITTAPIEventNotification_Event_Event+= new 
           TAPI3Lib.ITTAPIEventNotification_EventEventHandler(cn.Event);
        tobj.EventFilter=(int)(TAPI_EVENT.TE_CALLNOTIFICATION|
            TAPI_EVENT.TE_DIGITEVENT|
            TAPI_EVENT.TE_PHONEEVENT|
            TAPI_EVENT.TE_CALLSTATE|
            TAPI_EVENT.TE_GENERATEEVENT|
            TAPI_EVENT.TE_GATHERDIGITS|
            TAPI_EVENT.TE_REQUEST);
    
        for(int i=0;i<10;i++)
        {
            ea.Next(1,out ln,ref arg3);
            ia[i]=ln;
            if(ln!=null)
            {
                comboBox1.Items.Add(ia[i].AddressName);
                lines++;
            }
            else
                break;
        }
    }
    catch(Exception e)
    {
        MessageBox.Show(e.ToString());
    }
}

The code below is responsible for registering incoming calls so that they can be handled by our application. For that you need to select the line on which you want to receive calls and press the Register button.

C#
try
{
    registertoken[line]=tobj.RegisterCallNotifications(ia[line],
                 true,true,TapiConstants.TAPIMEDIATYPE_AUDIO,2);    
    MessageBox.Show("Registration token : "+ 
                 registertoken[line], 
                 "Registration Succeed for line "+line);
}
catch(Exception ein)
{
    MessageBox.Show("Failed to register on line "+line,"Registration for calls");
}

The class given below is to be added depending upon your TAPI event handling requirements. This is specially designed according to the requirements of the application.

C#
class callnotification:TAPI3Lib.ITTAPIEventNotification
{
    public delegate void listshow(string str);
    public listshow addtolist;
    
    public void Event(TAPI3Lib.TAPI_EVENT te,object eobj)
    {
        switch(te)
        {
            case TAPI3Lib.TAPI_EVENT.TE_CALLNOTIFICATION:
                addtolist("call notification event has occured");
                break;
            case TAPI3Lib.TAPI_EVENT.TE_DIGITEVENT:
                TAPI3Lib.ITDigitDetectionEvent dd = 
                   (TAPI3Lib.ITDigitDetectionEvent)eobj;
                addtolist("Dialed digit"+dd.ToString());
                break;
            case TAPI3Lib.TAPI_EVENT.TE_GENERATEEVENT:
                TAPI3Lib.ITDigitGenerationEvent dg = 
                     (TAPI3Lib.ITDigitGenerationEvent)eobj;
                MessageBox.Show("digit dialed!");
                addtolist("Dialed digit"+dg.ToString());
                break;
            case TAPI3Lib.TAPI_EVENT.TE_PHONEEVENT:
                addtolist("A phone event!");
                break;
            case TAPI3Lib.TAPI_EVENT.TE_GATHERDIGITS:
                addtolist("Gather digit event!");
                break;
            case TAPI3Lib.TAPI_EVENT.TE_CALLSTATE:
                TAPI3Lib.ITCallStateEvent a= 
                     (TAPI3Lib.ITCallStateEvent)eobj;
                TAPI3Lib.ITCallInfo b=a.Call;
            switch(b.CallState)
            {
                case TAPI3Lib.CALL_STATE.CS_INPROGRESS:
                    addtolist("dialing");
                    break;
                case TAPI3Lib.CALL_STATE.CS_CONNECTED:
                    addtolist("Connected");
                    break;
                case TAPI3Lib.CALL_STATE.CS_DISCONNECTED:
                    addtolist("Disconnected");
                    break;
                case TAPI3Lib.CALL_STATE.CS_OFFERING:
                    addtolist("A party wants to communicate with you!");
                    break;
                case TAPI3Lib.CALL_STATE.CS_IDLE:
                    addtolist("Call is created!");
                    break;
            }
            break;
        }
    }
}

How to handle H.323 or IP calls?

To do IP calls or H.323 calls, you need to make a checkbox named H.323 call(IP call) enabled and enter the IP address of the destination and press the Call button. Otherwise it will not succeed in calling to the remote destination. To receive H.323 calls or IP calls, you need to first register on the line on which you want to receive IP calls and check the checkbox named h.323 call(IP call).

How to answer an incoming call

The incoming calls will give notification in the call status area. Then according to whether you want to accept or reject the call, you check the checkbox named Reject to reject incoming calls, and press Answer or simply press Disconnect. To accept calls, do not check Reject checkbox and simply press Answer button which will connect to the call.

How to transfer a call

To transfer a call, first there should be one active call existing. Then you can specify the address to which the call is to be transferred to, as shown in the figure:

Image 3

Here I have specified the internet address since the call was an IP call. To provide this functionality, there is one function in IBasicCallControl named BlindTransfer(String transfferaddress). Refer the MSDN documents for more information on that!

Points of Interest

My interest is in developing more and more TAPI 3.0 applications using .NET as the platform. I am also interested in J2EE application development. My other areas of interest are:

  • VC++
  • Crystal Reports

and many other thing in my reach.

History

Latest revised version. This is the first release of this code so if you do have any suggestions they are always welcomed by me.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
India India
Hi,I am 21 year old student of information technology.I am interested to develop Computer telephony integeration softwares. I am also interested in deploying crystal reports, Directx programming and device driver implementation using VC++.Currently i am pursuing my b.tech(i.t.) degree at Nirma Institute of Technology,Gujarat(india).
Skills : vb.net,vc#.net,VC++(MFC)

Comments and Discussions

 
QuestionRe: Windows 8 Pin
Abolfazl Khusniddinov12-Jan-13 18:27
Abolfazl Khusniddinov12-Jan-13 18:27 
QuestionCaller ID Pin
Member 844370130-Oct-12 14:58
Member 844370130-Oct-12 14:58 
AnswerRe: Caller ID Pin
Easygoing19-Nov-12 0:39
Easygoing19-Nov-12 0:39 
Questionincoming call? Pin
Easygoing14-Oct-12 23:26
Easygoing14-Oct-12 23:26 
Questionwhen i try to install and done.... Pin
Cristian Capannini20-Sep-12 21:33
Cristian Capannini20-Sep-12 21:33 
AnswerRe: when i try to install and done.... Pin
HassanMirza1-Dec-12 8:26
HassanMirza1-Dec-12 8:26 
Bugand then its.... Pin
Cristian Capannini20-Sep-12 4:09
Cristian Capannini20-Sep-12 4:09 
Bughe's not reply! Pin
Cristian Capannini20-Sep-12 4:08
Cristian Capannini20-Sep-12 4:08 
ehehehe! he is a genius but won't help us! remove this code plz until it is commented detaily! Not work! And number of lines is limited by 10! I've 68 lines. And how can i make call???! This is very very bugly!!!!
QuestionHRESULT 0x80040007 OLE_E_BLANK Pin
dnyan8613-Sep-12 3:22
dnyan8613-Sep-12 3:22 
QuestionNot work!! Pin
Cristian Capannini2-Sep-12 21:22
Cristian Capannini2-Sep-12 21:22 
AnswerRe: Not work!! Pin
Cristian Capannini18-Sep-12 3:00
Cristian Capannini18-Sep-12 3:00 
QuestionDTMF digits not detected Pin
Rinaldo Bonfanti Posta7-Aug-12 4:49
Rinaldo Bonfanti Posta7-Aug-12 4:49 
Question"Com Excepiton " Please help me..... Pin
Avadhut Salavi9-May-12 23:15
Avadhut Salavi9-May-12 23:15 
QuestionTapi aplication, problem with sending DTMF signal Pin
Member 86346749-Feb-12 8:18
Member 86346749-Feb-12 8:18 
GeneralMy vote of 5 Pin
emmybest1-Feb-12 6:06
emmybest1-Feb-12 6:06 
BugApplication fail to register after some time Pin
saadullah Bhutto29-Sep-11 5:21
saadullah Bhutto29-Sep-11 5:21 
QuestionTAPI 3 on windows 7 Pin
Member 809297018-Jul-11 4:10
Member 809297018-Jul-11 4:10 
QuestionIncoming call in DataFax Modem Pin
fika_fa21-Jun-11 2:32
fika_fa21-Jun-11 2:32 
GeneralLibrary? Pin
emphero9930-May-11 6:11
emphero9930-May-11 6:11 
GeneralMy vote of 1 Pin
nghiadh200024-Apr-11 16:15
nghiadh200024-Apr-11 16:15 
Generalhelp me out please... Pin
MelisaValdovinos10-Apr-11 15:19
MelisaValdovinos10-Apr-11 15:19 
GeneralRe: help me out please... Pin
saadullah Bhutto10-May-11 23:22
saadullah Bhutto10-May-11 23:22 
GeneralRe: help me out please... Pin
saadullah Bhutto10-May-11 23:23
saadullah Bhutto10-May-11 23:23 
GeneralRe: help me out please... Pin
sbch14-Jul-11 23:02
sbch14-Jul-11 23:02 
GeneralRe: help me out please... Pin
emmybest1-Feb-12 6:08
emmybest1-Feb-12 6:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.