Click here to Skip to main content
15,880,392 members
Articles / Programming Languages / Visual Basic
Article

Working with TAPI 3.x from .NET

Rate me:
Please Sign up or sign in to vote.
3.08/5 (47 votes)
6 Aug 2005CPOL 429.8K   11.7K   79   120
It's about time to Use Advanced Telephony features in your code? Right!

Introduction

Here I will post a class containing the event handling part in TAPI 3.0 and VB.NET.
I will also include the full project as a download.

The code is self explaining and well commented and if you need any further information, please drop me a PM.

All comments are welcome and please vote for the article.

Here is the full commented source code in VB.NET and I will be posting more in-depth tutorials about TAPI.

VB.NET
Imports TAPI3Lib 

Namespace VBCity.TAPI 

    Public Class VBTAPI 

        Private Const MediaAudio As Integer = 8 
        Private Const MediaModem As Integer = 16 
        Private Const MediaFax As Integer = 32 
        Private Const MediaVideo As Integer = 32768 

        Private WithEvents oTAPI As TAPI3Lib.TAPI ' will hold our TAPI object 
        ' will hold our selected address (you can hold many addresses in an array)
        Private oAddress As ITAddress 
        Private RegCookie As Integer 

        Sub New() 
            Try 
                ' creating a new instance to first initialize TAPI 
                ' before attaching the events 
                Dim m_TAPI As New TAPIClass 
                ' a variable to hold supported media types for the address 
                Dim MediaTypes As Integer 
                ' initializing TAPI 
                m_TAPI.Initialize() 
                ' attaching event sink 
                oTAPI = m_TAPI 
                ' getting rid of the private instance as we have another 
                ' global instance (oTAPI) 
                m_TAPI = Nothing 
                Dim AddressCollection As ITCollection = oTAPI.Addresses() 
                ' looping through address collection
                For Each Address As ITAddress In AddressCollection  
                    ' checking if address is working
                    If Address.State = ADDRESS_STATE.AS_INSERVICE Then  
                        ' extracting media support interface from the address 
                        Dim MediaSupport As ITMediaSupport = Address 
                        ' extracting media types supporting 
                        MediaTypes = MediaSupport.MediaTypes 
                        MediaSupport = Nothing ' dispose of the object 
                        If (MediaTypes And MediaModem) = MediaModem Then 
                            ' the address is a data Modem 
                            If (MediaTypes And MediaAudio) = MediaAudio Then 
                                ' Select the address since it supports Audio 
                                ' and is a FAX/Modem 
                                oAddress = Address ' select this address 
                                ' show the selected address name
                                MsgBox("we have selected this address: " + _
                                       oAddress.AddressName)  
                                Exit For 
                            End If 
                        End If 
                    End If 
                Next Address 
                If Not (oAddress Is Nothing) Then 
                    ' registering notifications for the selected address 
                    RegCookie = oTAPI.RegisterCallNotifications_
                                (oAddress, True, False, MediaTypes, 1) 
                    ' Note: this registration can be done on 
                    ' as many addresses as you want 
                    ' we will not receive notifications unless we specify 
                    ' which type of events we are interested in 
                    oTAPI.EventFilter = (TAPI_EVENT.TE_CALLNOTIFICATION Or _
                            TAPI_EVENT.TE_CALLSTATE Or TAPI_EVENT.TE_CALLINFOCHANGE) 
                Else 
                    MsgBox("no address selected") 
                End If 
            Catch ex As Exception 
                MsgBox("Error occurred:" & vbCrLf & ex.Message, _
                        MsgBoxStyle.Critical, "VBCITY.VBTAPI") 
            End Try 
            ' by now we are done for the initialization and registration 
            ' and the events should fire 
            ' Note: you must dispose of TAPI before you destroy the class 
            ' and I will leave this for now 
        End Sub 
        
        Private Sub oTAPI_Event(ByVal TapiEvent As TAPI3Lib.TAPI_EVENT, _
                        ByVal pEvent As Object) Handles oTAPI.Event 
            ' making a thread asynchronously process the event 
            Dim thAsyncCall As System.Threading.Thread 
            Select Case TapiEvent 
            
                Case TAPI_EVENT.TE_CALLNOTIFICATION 'Call Notification Arrived 
                    ' assigning our sub's delegate to the thread 
                    thAsyncCall = New Threading.Thread(AddressOf CallNotificationEvent) 
                    ' passing the variable for the thread 
                    CallNotificationObject = CType(pEvent, ITCallNotificationEvent) 
                    ' starting the thread 
                    thAsyncCall.Start() 
                    
                Case TAPI_EVENT.TE_CALLSTATE 'Call State Changes 
                    ' assigning our sub's delegate to the thread 
                    thAsyncCall = New Threading.Thread(AddressOf CallStateEvent) 
                    ' passing the variable for the thread 
                    CallStateObject = CType(pEvent, ITCallStateEvent) 
                    ' starting the thread 
                    thAsyncCall.Start() 
                    
                Case TAPI_EVENT.TE_CALLINFOCHANGE 'Call Info Changes 
                    ' assigning our sub's delegate to the thread 
                    thAsyncCall = New Threading.Thread(AddressOf CallInfoEvent) 
                    ' passing the variable for the thread 
                    CallInfoObject = CType(pEvent, ITCallInfoChangeEvent) 
                    ' starting the thread 
                    thAsyncCall.Start() 
                    
            End Select 
        End Sub 
        
        Private CallNotificationObject As ITCallNotificationEvent 
        Private Sub CallNotificationEvent() 
            ' here we should check to see various notifications of new and ended calls 
            Select Case CallNotificationObject.Event 
            
                Case CALL_NOTIFICATION_EVENT.CNE_MONITOR 
                    ' the notification is for a monitored call 
                Case CALL_NOTIFICATION_EVENT.CNE_OWNER 
                    ' the notification is for an owned call 
            
            End Select 
        End Sub 

        Private CallStateObject As ITCallStateEvent 
        Private Sub CallStateEvent() 
            ' here we should check to see call state and handle connects and disconnects 
            Select Case CallStateObject.State 
            
                Case CALL_STATE.CS_IDLE 
                Case CALL_STATE.CS_INPROGRESS 
                Case CALL_STATE.CS_OFFERING 
                    ' a call is offering so if you don't want it then pass it 
                    ' The code to pass the call is the following 
                    ' Dim CallControl As ITBasicCallControl = CallStateObject.Call 
                    ' CallControl.HandoffIndirect (CallStateObject.Call.CallInfoLong_
                                            (CALLINFO_LONG.CIL_MEDIATYPESAVAILABLE) 
                Case CALL_STATE.CS_CONNECTED 
                    ' call is connected 
                Case CALL_STATE.CS_QUEUED 
                    ' call is being queued 
                Case CALL_STATE.CS_HOLD 
                    ' call is on hold 
                Case CALL_STATE.CS_DISCONNECTED 
                    ' call is disconnected 
            
            End Select 
        End Sub 

        Private CallInfoObject As ITCallInfoChangeEvent 
        Private Sub CallInfoEvent() 
            ' here you can extract information from the call 
            ' the code to extract the caller ID 
            ' >>> put the following code in a try block and 
            ' swallow the exception if it gives errors 
            Dim CallerID As String 
            CallerID = CallInfoObject.Call.CallInfoString_
                    (CALLINFO_STRING.CIS_CALLERIDNAME) 
        End Sub 

    End Class 
End Namespace

History

  • 7th August, 2005: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Dot Labs Pty Ltd
Australia Australia
A trusted technology adviser and a seasoned consultant with 15 years of experience in IT industry focused on helping organisations build modern IT solutions that drive innovation and increase efficiency and end-user value.

With a strong business acumen, an entrepreneur character, and vast experience in software engineering, I started my own consulting business (Dot Labs Pty Ltd) with a mission to drive adoption of modern solution architecture, public cloud infrastructure, and industry best practices.

During my career, I gained an extensive hands-on experience of software engineering through architecture standards, patterns, and best practice through my work with various enterprise organisations and startups, while keeping track of emerging technology and industry trends.

Comments and Discussions

 
QuestionGet serial number Pin
ZenigataCP25-Oct-18 11:47
ZenigataCP25-Oct-18 11:47 
QuestionThanks but.. Pin
Member 1034575610-May-18 22:31
Member 1034575610-May-18 22:31 
QuestionHow to GetCallInformation and Transfer call In addtapi.net with asp.net c# ? Pin
Jignesh Patel 42828-Nov-16 1:47
Jignesh Patel 42828-Nov-16 1:47 
Questiontapi Pin
Member 112819786-May-15 19:51
Member 112819786-May-15 19:51 
QuestionConsole closes Pin
Marcel Walser29-Nov-13 22:20
Marcel Walser29-Nov-13 22:20 
QuestionHOWTO ... answer an incomming Call Pin
beckiemkf7-Aug-13 23:55
beckiemkf7-Aug-13 23:55 
QuestionNo event raized when incoming call Pin
Jul67ien30-Jun-13 22:28
Jul67ien30-Jun-13 22:28 
AnswerRe: No event raized when incoming call Pin
Bishoy Demian1-Jul-13 12:57
Bishoy Demian1-Jul-13 12:57 
GeneralRe: No event raized when incoming call Pin
Jul67ien2-Jul-13 22:17
Jul67ien2-Jul-13 22:17 
GeneralRe: No event raized when incoming call Pin
beckiemkf11-Jul-13 11:47
beckiemkf11-Jul-13 11:47 
GeneralMy vote of 4 Pin
Nujramako2-Mar-12 23:59
Nujramako2-Mar-12 23:59 
GeneralMy vote of 1 Pin
Technorodent9-Feb-11 10:41
Technorodent9-Feb-11 10:41 
GeneralMy vote of 1 Pin
BenJamming2-Jan-11 15:53
BenJamming2-Jan-11 15:53 
GeneralHelp me profeor Pin
AshkanJami20-Oct-10 21:50
AshkanJami20-Oct-10 21:50 
Generalcall center system develop help needed Pin
ChesterAV12-Oct-10 9:28
ChesterAV12-Oct-10 9:28 
GeneralTAPI "BlindTransfer" Problem Pin
zendehdel21-Jun-10 23:03
zendehdel21-Jun-10 23:03 
GeneralVisual Basic 2008 / .NET 3.5 / TAPI3 - INCOMMING CALL [EXAMPLE CODE] PinPopular
TomGermany201031-Mar-10 0:14
TomGermany201031-Mar-10 0:14 
GeneralRe: Visual Basic 2008 / .NET 3.5 / TAPI3 - INCOMMING CALL [EXAMPLE CODE] Pin
wiswalld9-Dec-10 8:02
wiswalld9-Dec-10 8:02 
GeneralRe: Visual Basic 2008 / .NET 3.5 / TAPI3 - INCOMMING CALL [EXAMPLE CODE] Pin
beckiemkf8-Jul-13 22:55
beckiemkf8-Jul-13 22:55 
GeneralMy vote of 1 Pin
TomGermany201018-Mar-10 0:08
TomGermany201018-Mar-10 0:08 
GeneralRe: My vote of 1 Pin
Bishoy Demian18-Mar-10 6:12
Bishoy Demian18-Mar-10 6:12 
GeneralVisual Basic 2008 - frustration Pin
TomGermany201017-Mar-10 0:01
TomGermany201017-Mar-10 0:01 
GeneralRe: Visual Basic 2008 - frustration Pin
Bishoy Demian18-Mar-10 6:09
Bishoy Demian18-Mar-10 6:09 
Hi Tom, I can feel your frustration, however you should know that TAPI was not designed to be used from .net or managed stack, it is best to use it from old VB or even C++ if possible if you need to use most of its features.

the main reason for this is that .net creates an Interop for TAPI ocx that cannot support some of COM features and its deep polymorphism.

if you used my sample code here as basis for your implementation, maybe I can help you if you have specific questions or need help in performing specific task, simply post your questions here or you can find my on skype with id="bghaly"
"Imagination is more important than knowledge.."
{Albert Einstein}

GeneralRe: Visual Basic 2008 - frustration Pin
TomGermany201029-Mar-10 23:31
TomGermany201029-Mar-10 23:31 
GeneralVB .NET Pin
OppVen3-Jun-11 4:30
OppVen3-Jun-11 4:30 

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.