tags:

views:

315

answers:

1

I had developed some code


private void button7_Click(object sender, EventArgs e) { IEnumCall ec = ia[line].EnumerateCalls(); uint arg = 0; ITCallInfo ici;

        try
        {
            ITBasicCallControl  bc1 = ln.CreateCall(textBox1.Text, TapiConstants.LINEADDRESSTYPE_IPADDRESS, TapiConstants.TAPIMEDIATYPE_AUDIO);
            ec.Next(1, out ici, ref arg);
            ITBasicCallControl bc = (ITBasicCallControl)ici;
            bool fysync=true ;
            bc.Conference(bc1, fysync);
            ITCallHub ch = ici.CallHub(ch);
            //ITCallHub ch = (ITCallHub)ici;

ici.ReleaseUserUserInfo();

        }
        catch (Exception exp)
        {
            MessageBox.Show("No call to conference!", "TAPI3");
        }
    }


which is not working

A: 

basicaly TAPI is using H323 protocol and softphone use SIP which is text based protcol si the connection will not establish

Abdul jalil
no it is established if u had any source code for conferencing plz share with me
ush