Launching Control Central Using an ActiveX Navigator

Oracle Enterprise Taxation Management provides an ActiveX component CDxCTI.CDxNavigator that external applications, such an IVR application, can use to launch Control Central for a given account number or phone number.

Note:

Enable ActiveX. In order to use the navigator, you must configure your browser to enable ActiveX.

The CDxNavigator object exposes two methods:

Method: ControlCentralByAccount

Input:

VB Example: Navigate to Control Central Using an Account ID

Dim nav As New CDxTAPI.CDxNavigator
nav.ControlCentralByAccountId ("http://spl-server:1000", AccountID)

Web Page Example: Navigate to Control Central Using an Account ID

Dim nav As New ActiveXObject("CDxTAPI.CDxNavigator");
nav.ControlCentralByAccountId ("http://spl-server:1000", AccountID)

Method: ControlCentralByPhone

Input:

VB Example: Navigate to Control Central Using a Phone Number

Dim nav As New CDxTAPI.CDxNavigator
nav.ControlCentralByPhone ("http://spl-server:1000", "(415) 357-5423", "(999) 999-9999")

Web Page Example: Navigate to Control Central Using a Phone Number

Dim nav As New ActiveXObject("CDxTAPI.CDxNavigator");
nav.ControlCentralByPhone ("http://spl-server:1000", "(415) 357-5423", "(999) 999-9999");

Main Processing

The ActiveX component performs the following:

Navigation Sample Provided with the System

An HTML page has been provided to demonstrate the integration. This sample may be found in the following location on your Oracle Enterprise Taxation Management server: /ci/cti/CTISample.HTM.

Note:

Sample Data. The accounts and phone numbers included in the sample HTML file correspond to accounts and phone numbers that exist in the demo database.

This sample program is provided to illustrate to implementers how to integrate their CTI-IVR system with Oracle Enterprise Taxation Management.