cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1356
Views
0
Helpful
3
Replies

Alternatives to Devicelistx.asp

Voiceops SSC
Level 1
Level 1

Hi,

     We currently have a process that captures the Devicelistx.asp report and exports it into a database.  Once in the databse table we can use it to match an extension to and IP address.

We are in the process of upgrading from CM 4.1(3) to CM 7.x and I read on the IP Services SDK that the Devicelistx.asp report in NO LONGER available in this version.

Is anybody doing something similar?

What is it replaced with?

Is there an API now that would allow me to match and extension to a device's IP?

thanks

3 Replies 3

William Bell
VIP Alumni
VIP Alumni

You have primarily two viable options.  First, you can use SNMP to poll for the information (remember to ask each server in the cluster about their view of the world).  Second, you can use the Cisco Serviceability API set, specifically RISport.  I developed some tools a while back that used devicelistx.asp and had to convert them to use RISPort.

I wrote a little about my experiences, see the following links.  The first is just a quick touch on the topic.  The second is a specific discussion on the record set.  I'm probably overdue to write another follow up now that you inspired me to take a look.  Hope the following is helpful.

http://www.netcraftsmen.net/resources/blogs/good-bye-devicelistx-asp-hello-risport.html

http://www.netcraftsmen.net/resources/blogs/identifying-the-correct-device-status-in-a-risport-response.html

HTH -Bill (b) http://ucguerrilla.com (t) @ucguerrilla

Please remember to rate helpful responses and identify

William,

     Thanks for the prompt response.

To tell you the truth, this looks a bit hairy; I thought it was going to be something simpler but I'll give it a try.

Questions:

To submit the XSL structured queries (like your query below), what do you use to build them and run them?  Can I use something like eclipse?

"var nodelist = xmldom.selectNodes("//CmDevices/item[Name="" + devname.toUpperCase() + ""]");
var mytimestamp=0;
var mystatus="";
for(var row=0;row
{  //loop through nodelist
    var child = nodelist.item(row);...."

How responsive is it?  I know it will depend on many things but in general lets say to have an application run a query every time it starts???

thanks again for your help.

"Hairy" is a good word for it to be sure.  As far as programming/scripting language and tools, as long as you can spawn a client that can send/process http(s) requests with the CUCM node and parse XML you should be in business.  Cisco has examples in the Cisco developer guide for the Serviceability XML API:

http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/devguide/7_1_2/serviceability.html

Also, there are definition files (.wsdl) that you can use to generate code stubs, which you can then tweak to meet your needs.  TBH, I have not graduated to that level yet and am not sure of all the hoops you have to jump through.  I sort of worked my way through it using MS JavaScript.  I ponder porting all of the time, but my method and language of choice works well for the tools I put together for my team and the times I have had to put stuff together for customers.

In general, once I got adjusted to using RISport I believe it out performs devicelistx.asp by a significant margin.  In large environments (10,000+ phones) devicelistx.asp was a dog (actually, you had to modify the .asp to get it to handle the load).

Now, to the "query" side of things.  You recall that with devicelistx.asp, the ASP file itself built a query at the top of the file.  Something like this:

  var supportedPhones = new Array();
  supportedPhones[supportedPhones.length] = 35;     // 7960
  supportedPhones[supportedPhones.length] = 36;     // 7940

     <...add more phones here...>

  var sql = "SELECT d.name as 'devicename', <...ommitted...> FROM Device d INNER JOIN <...omitted..> WHERE d.tkProduct IN (" + supportedPhone.join(",") + ")";

Using this query, devicelistx.asp pulled the device list from the database.  It then passes each record to RIS (via an existing ActiveX object: RISX.DeviceInfoX) to determine the "state" of the device.  Finally, it splices the two sides of data together and dumped it into an XML output stream.

All you needed to do was send a request to devicelistx.asp and then parse the XML.

With the RISport approach, some of the logic is still the same.  If you have fewer than 200 records and you only wanted the device name and IP address, you can actually just send a query to RISport directly and specify the device class (Phone) and max records (which is 200).  The RISport response will give you all kinds of data in return, which you can parse and identify the IP address and status (i.e. registered, unregistered, etc.) of the device.

If you have more than 200 records, then you need to approach this from a different angle.  I have gone this route because pretty much all of my customers have >200 records.  Anyway, this approach harkens back to devicelistx.asp (ever so slightly).  You will need to run a database query using the AXL/SOAP API to retrieve all of your phone records.  Then using this recordset, send chunks of 200 records to RISport to determine the IP Address/Status Info/etc.

It isn't really that bad, you can write your own app to use the AXL/SOAP API or you can leverage a tool that Cisco provides with every CUCM (at least starting at 6.0 and later).  It is a plugin that you can download called Cisco CallManager AXL SQL Toolkit.  Note that this is for device queries (not the realtime info, that is a separate step). I wrote a series on the AXL SQL Toolkit that starts here:

http://www.netcraftsmen.net/resources/blogs/running-sql-queries-on-cucm-6x7x-using-axl-soap-toolkit-part-1.html

TBH, aside from testing the tools basic moving parts I have only used the plugin to do updates to the database because I already had my query engine built.  The cool thing is that the toolkit provides source code that you may find helpful.

The query you need to run against AXL/SOAP depends on the data you want to have in your final recordset.  The bare minimum would be the following:

select name from device where tkclass=1

This will get you all of the phones.  Once you build the recordset, then your script needs to build a query to send to RISport to get the rest of the data you care about.  I attached an example .xml structure for what a multi-phone query to RISport would look like (multi-phone-request.xml).

The RISport response is the hairy part, that is why I recommend that if your programming language has a library to assist with running XSL structured queries.  This will help you to focus on the XML child nodes that you care about with very little coding involved.  I touch on this in the link I posted to my initial response.  I don't know much (or anything) about eclipse but a quick google search for "eclipse xsl tools" and "eclipse xml parsing" makes it seem that Eclipse is more than capable of doing what you need.

So, summary (assuming >200 phones):

1. Open a HTTPs session to the AXL/SOAP API on the CUCM primary node (or other if you prefer)

2. Use "executeSQLQuery" function in the AXL/SOAP API to run a basic query

3. Collect the phone data returned by "executeSQLQuery" and figure out a way to parse it into 200 unit chunks

4. For each 200 unit chunk, send a RISport query to get a ton of data

5. Parse the RISport response to get the data points you care about (i.e. IPAddress, Status, etc.)

6. Push/dump/etc. each record as you splice the necessary data together

7. Repeat 4 - 6 until done

Hope that helps.  Again "hairy" is a good descriptor.  Not so much for the task, but describing the task via a forum and trying to be brief is pretty hairy.  Hopefully I haven't muddied it up for you.  I suspect that sense you have a tool built to handle devicelistx.asp that you already have a good idea of the overall flow and logic.  The only additional step is that you have to get the data (SQL query) and the realtime info (RIS) and splice it together.  That was the only value devicelistx.asp was providing.

Thanks for posing the question.  It gave me ideas for some write ups I should do.

HTH -Bill (b) http://ucguerrilla.com (t) @ucguerrilla

Please remember to rate helpful responses and identify

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community: