首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Cisco Webex API异常

Cisco Webex API异常
EN

Stack Overflow用户
提问于 2015-07-24 22:42:45
回答 1查看 582关注 0票数 1

我已经成功地使用了其他几个Webex,但是"LstrecordaccessDetailHistory XML请求“不起作用。

我从XML响应中得到以下消息:

无法实例化com.webex.xmlapi.service.binding.history.lstrecordaccessDetailHistory;java.lang.ClassNotFoundException: com.webex.xmlapi.service.binding.history.lstrecordaccessDetailHistory

以下是我的XML请求正文:

代码语言:javascript
复制
String strXML = "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\r\n";
        strXML += "<serv:message xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:serv=\"http://www.webex.com/schemas/2002/06/service\">\r\n";
        strXML += "<header>";
        strXML += "<securityContext>";
        strXML += "<password>password</password>";
        strXML += "<siteName>siteName</siteName>";
        strXML += "<email>email</email>";
        strXML += "</securityContext>";
        strXML += "</header>";


        strXML += "<body>";
        strXML += "<bodyContent xsi:type=\"java:com.webex.service.binding.history.lstrecordaccessDetailHistory\">";
        strXML += "<recondID>recondID</recondID>";
        strXML += "<timeZoneID>timeZoneID</timeZoneID>";
        strXML += "<listControl>";
        strXML += "<startFrom>1</startFrom>";
        strXML += "<maximumNum>500</maximumNum>";
        strXML += "<listMethod>OR</listMethod>";
        strXML += "</listControl>";
        strXML += "</bodyContent>";
        strXML += "</body>";
        strXML += "</serv:message>";

这是思科的文件

以前有人经历过这个吗?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2015-07-25 01:02:17

您的请求基于不幸的是过时了的文档。您必须使用不同的xsi:type

唯一受支持的xsi:type是 xsi:type="java:com.webex.service.binding.history.LstmeetingusageHistory“ 或缩短的路径 xsi:type="history.LstmeetingusageHistory“ ..。至于模式-您是正确的,它是错误的列表会议使用命令。我会让工程团队在下一个版本中修复它。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/31620858

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档