Blogs

Showing 12 results.
Items per Page 20
of 1

Forums

« Back to CTIOS Toolkit Questions

Outbound dialer Desktop using Java CIL

Combination View Flat View Tree View
Threads [ Previous | Next ]
Hi,
 
Is it possible to develop outbound desktop using Java CIL?
 
With Regards,
Huthesha

Yes, the outbound functions are provided for by the ECC variables BAStatus, BAResponse, etc. See the outbound option Guide here
http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/outbound_option/outboundoption9_0/installation/guide/UCCE_BK_O4A87BBC_00_outbound-option-guide-for-cisco.pdf

You may wish to use the COM Cil Sample: CTI Toolkit Outbound desktop as an example when creating your Java Cil version of the outbound desktop.

Hi David,

How can i impement acept and reject feature for outbound desk? In CTIOS developer guide i dint find any information regarding these features.

With Regards,
Huthesh

The information on the ECC variables used for the Outbound option desktop are in the Outbound option guide.
http://www.cisco.com/en/US/products/sw/custcosw/ps524/products_installation_and_configuration_guides_list.html

Also, use the COM Cil Outbound desktop as a sample.
C:\Program Files\Cisco Systems\CTIOS Client\CTIOS Toolkit\Win32 CIL\Samples\CTI Toolkit Outbound Desktop

Here is the sample code for the Reject button from the COM Cil Outbound Option desktop:

Private Sub Reject_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Reject.Click

Dim ECCArgs As New Cisco.CTIOSCLIENTLib.Arguments
Dim nErrorCode As Long
Dim args As New Cisco.CTIOSCLIENTLib.Arguments

If Not (m_call Is Nothing) Then

args = m_call.GetCallData

ECCArgs = args.GetValueArray("ecc")
' ECC variables
ECCArgs.AddItem("BAResponse", "Reject")

m_call.SetCallData(args, nErrorCode)

Disable_BA_Buttons()
End If
End Sub

Collateral


No files available