我已经成功地使用了其他几个Webex,但是"LstrecordaccessDetailHistory XML请求“不起作用。
我从XML响应中得到以下消息:
无法实例化com.webex.xmlapi.service.binding.history.lstrecordaccessDetailHistory;java.lang.ClassNotFoundException: com.webex.xmlapi.service.binding.history.lstrecordaccessDetailHistory
以下是我的XML请求正文:
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>";这是思科的文件。
以前有人经历过这个吗?
发布于 2015-07-25 01:02:17
您的请求基于不幸的是过时了的文档。您必须使用不同的xsi:type
唯一受支持的
xsi:type是 xsi:type="java:com.webex.service.binding.history.LstmeetingusageHistory“ 或缩短的路径 xsi:type="history.LstmeetingusageHistory“ ..。至于模式-您是正确的,它是错误的列表会议使用命令。我会让工程团队在下一个版本中修复它。
https://stackoverflow.com/questions/31620858
复制相似问题