I'm doing a simple call program for a CRM for a client, and I'm having trouble with their phone system. They have a Cisco IP phone system that has internal routing, and when I execute the following code, I always get '9900' as the caller ID number. Is there any way to get the routed number? I'm mostly new to TAPI, so thanks in advance for your help.
cn = tapi.RegisterCallNotifications(line, true, true, TAPI3Lib.TapiConstants.TAPIMEDIATYPE_AUDIO, 2);
if (cn.Call.CallState == TAPI3Lib.CALL_STATE.CS_OFFERING){
string c = cn.Call.get_CallInfoString(TAPI3Lib.CALLINFO_STRING.CIS_CALLERIDNUMBER);
}
Aaron Brake