cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1974
Views
0
Helpful
2
Replies

CiscoIPPhoneExecute - NavDown and VolDown are not accepted

icarg2019
Level 1
Level 1

I am trying to send key presses to remote phones using the CiscoIPPhoneExecute POST method. My code works perfectly, I can send all commands except NavDown.

I can successfully send NavUp key press:

<?xml version="1.0" encoding="utf-8"?>
<CiscoIPPhoneResponse>
<ResponseItem URL="Key:NavUp" Data="Success" Status="0" />
</CiscoIPPhoneResponse>

NavDown key press produces an error:

<?xml version="1.0" encoding="utf-8"?>
<CiscoIPPhoneResponse>
<ResponseItem URL="Key:NavDown" Data="URI not found" Status="6" />
</CiscoIPPhoneResponse>

 

Looking at the XML schema file in the phone application development notes, NavDown is a supported key. Tested on both 79xx and 88xx phones, including the latest firmware version.

Same issue for VolUp (works fine) and VolDown (throws an error)

I can only assume that there is a bug in the code.

1 Accepted Solution

Accepted Solutions

dstaudt
Cisco Employee
Cisco Employee

Looking at the latest dev notes, it looks like those keys are 'VolDwn' and 'NavDwn' (note the lack of an extraneous 'o')...can you check?

View solution in original post

2 Replies 2

dstaudt
Cisco Employee
Cisco Employee

Looking at the latest dev notes, it looks like those keys are 'VolDwn' and 'NavDwn' (note the lack of an extraneous 'o')...can you check?

You are right. These are the correct keys. I was looking in the wrong section of the documentation (under XML schema), I see now there is a Device Control URIs section that has the correct information.