02-10-2012 12:57 PM - edited 03-16-2019 09:31 AM
8.5(1) has a IP Phone SDK per release notes below
http://www.cisco.com/en/US/docs/voice_ip_comm/cuipph/all_models/xsi/8_5_1/ipphoneservicessdk.html
But I don’t see a .zip file for 8.5(1) SDK at below location (I’m looking for latest multidirectory.asp from 8.5(1)SDK)
http://developer.cisco.com/web/ipps
or is the .zip file named 7.1(2) IP Phone Services SDK.zip the most recent?
02-10-2012 09:58 PM
Yes, that is the most recent one. In case you dont get what you need in that zip, please reach out to Cisco Developers ( either over forum or Developer TAC case ) to see if you can get one.
HTH
GP.
Pls rate helpful posts !!
02-11-2012 04:50 AM
I was getting a XML Parse 4 error on phone display. Found I had increased the number of records per page beyond 32. Easiest way to see this was to http://ipphone and go to Console Logs and view the Parser Error on phone.
Why the multidirectory.asp code doesn't state 32 is the maximum value....
7965 Phone Console Log File
6563: ERR 19:49:19.211144 JVM: Startup Module Loader|cip.http.ae:? - listener.httpSucceed: http://10.101.240.25/firmdirectory/multidirectory.asp?action=list&id=-1
6564: ERR 19:49:19.212763 JVM: Startup Module Loader|cip.xml.ap: - XML Parser Exception: Too many 'DirectoryEntry' elements in '/CiscoIPPhoneDirectory : occurs=33+ maxOccurs=32 (line=129)
6565: NOT 19:50:23.012144 CDP-D: PHY 1 --> LINK IS DOWN
We modified this from 32 to a higher number, has to be 32 or less
Original Multidirectory.asp from the SDK
var ALL_DIRECTORIES_PHRASE = "All Directory Search";
var ALLOW_ALL_USERS_SEARCH = false;
var MAX_LIST_SIZE = 32; // Max number of users per page
0ur modified version of multidirectory.asp
var ALL_DIRECTORIES_PHRASE = "All Directory Search";
var ALLOW_ALL_USERS_SEARCH = false;
var MAX_LIST_SIZE = 64; // Max number of users per page
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide