I am trying to port some of the scripts that I had written for CCM 4.2(3) to CUCM 6.1 and I am stuck on one of them that gets some real-time info. After reading through the docs I think I have made all the necessary changes. However, when I make the risport query I get an error saying :
"No Handler found for SelectCmDevice"
The text of my request is as follows:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:tns="http://schemas.cisco.com/ast/soap/"
xmlns:types="http://schemas.cisco.com/ast/soap/encodedTypes"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Header>
<tns:AstHeader id="id1">
<SessionId xsi:type="xsd:string">1217031364962</SessionId>
</tns:AstHeader>
</soap:Header>
<soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<tns:SelectCmDevice>
<StateInfo xsi:type="xsd:string" />
<CmSelectionCriteria href="#id1"/>
</tns:SelectCmDevice>
<tns:CmSelectionCriteria id="id1" xsi:type="tns:CmSelectionCriteria">
<MaxReturnedDevices xsi:type="xsd:unsignedInt">10</MaxReturnedDevices>
<Class xsi:type="tns

eviceClass">Phone</Class>
<Model xsi:type="xsd:unsignedInt">255</Model>
<Status xsi:type="tns:CmDevRegStat">Registered</Status>
<SelectBy xsi:type="tns:CmSelectBy">Name</SelectBy>
<SelectItems href="#id2" />Name </tns:CmSelectionCriteria>
<soapenc:Array id="id2" soapenc:arrayType="tns:SelectItem[2]">
<Item href="#id3"/>
<Item xsi:null="1"/>
</soapenc:Array>
<tns:SelectItem id="id3" xsi:type="tns:SelectItem">
<Item xsi:type="xsd:string">SEP*</Item>
</tns:SelectItem>
</soap:Body>
</soap:Envelope>
What am I missing?
Any help greatly appreciated.
Thanks,
Shrenik