Blogs

Check out the new content on the Cisco Developer Network reflecting the New & Enhanced features in Cisco Unified Communication Manager 9.1.
See the new 9.1 JTAPI Documentation ...Read More

 

The Unified Communications 9.0 Partner Bundle packages Cisco’s Collaboration application software for our Collaboration partner community to leverage for their internal lab or demonstration systems. The 9.0 version is now available for order. Learn More >> ...Read More

 

Developer Partners,

Cisco announces the availability of our 2012 Developer Partner presentations shared at CiscoLive San Diego.

Please log into the Cisco Developer Network using your Partner UserID to download this content.

Access these presentations here: http://developer.cisco.com/web/cdc/devforumpreso PARTNER LOGIN REQUIRED
...Read More

 

Developer Partners,

Cisco announces the availability of our 2012 Developer Partner presentations shared at CiscoLive London.

Please log into the Cisco Developer Network using your Partner UserID to download this content.

Access these presentations here: http://developer.cisco.com/web/cdc/devforumpreso PARTNER LOGIN REQUIRED
...Read More

 

Cisco Technology Developer Partners,

Cisco is proud to announce the availability of our Cisco Unified Communications System Release 8.6 Not-For-Resale software bundle on Cisco Marketplace (Partner Login Required).

To purchase the latest Unified Communications NFR Software bundle
- Navigate to Cisco Marketplace
- Login using your Cisco.com UserID ...Read More

 

Showing 1 - 5 of 30 results.
Items per Page 5
of 6

Forums

« Back to Cisco JTAPI Questions

Automatic reply: New Message from Abhishek Malhotra in Cisco JTAPI (JTAPI)

Combination View Flat View Tree View
Threads [ Previous | Next ]
Hi to all, I'm trying to test the SuperProvider feature  to check the iphone's status and retrieve the  IP Adress.
I created on CUCm an applicationUser with  Standard CTI Allow Control of all  Devices.
Then in my test application I created the Terminal (7970) with the following statements:
term = provider.createTerminal("SEP001E4A0C7F93");
term.addObserver(this);
I rightly received the CiscoTermCreatedEv and the CiscoTermInServiceEv events, but the Terminal never goes on Registered State, so I can't retrieve its IP Address.
IpPhone is rightly registered on the CUCM.
What can I do ?
Thanks.

What CUCM / JTAPI Version are you using?
 

Dear Sender, I'm on Business trip during Oct 14 to Oct 19. During this period I will have limit access both email and phone. I'm apologized for any delay response.

On PTO today 10/12/2012

Abhishek Malhotra:
What CUCM / JTAPI Version are you using?
 

8.5.1.10000-26.
Any idea ?

Have you registered feature that enables register/unregister event for a terminal?
Application needs to use registerFeature api to register feature "CiscoFeatureID. TERMINAL_REGISTER_UNREGISTER_EVENT_NOTIFY" in order to get CiscoProvTerminalRegisteredEv/CiscoProvTerminalUnRegisteredEv events when device registers/unregister.

Device I try to test, is already registered.
However I try to register tge above provider feature, but still it doesnt'work.
My snippet code is the following:

String providerString = providerName + ";login=" + login + ";passwd=" + passwd; //;appinfo=CiscoSoftphone
provider = (CiscoProvider) peer.getProvider ( providerString );
provider.addObserver ( this );
Thread.sleep(1000);
provider.registerFeature(CiscoProvFeatureID.TERMINAL_REGISTER_UNREGISTER_EVENT_NOTIFY);
Thread.sleep(1000);
CiscoProviderCapabilities cap = (CiscoProviderCapabilities) provider.getCapabilities();
if (cap.canObserveAnyTerminal()) {
term = provider.createTerminal("SEP1C17D3C35DC8");
term.addObserver(this);
if (term.isRegistered()) {
println("Device registered: " + term.getName());

Collateral


No files available