This document was generated from CDN thread
Created by: Jaime Bennett on 30-03-2011 10:53:00 AM
Hello,
I¿ve been using the Julmar TAPI 3.x .NET wrapper (v 1.0.0.3) with c#. I¿m able to create a conference call with one connected call, using the following:
TCall tNewCall = tAddress.CreateCall("6449", LINEADDRESSTYPES.PhoneNumber, TAPIMEDIATYPES.AUDIO);
tExistingCall.Conference(tNewCall, true);
tNewCall.Finish(FINISH_MODE.FM_ASCONFERENCE);
What I need to do is create a conference with two calls I already have established, one connected and one on hold. Does anyone know how to make this happen?
My application is currently using all c# with the Julmar wrapper--does Cisco provide any code examples or a wrapper of their own?