Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/xml/14.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java Cisco Webex API异常_Java_Xml_Cisco_Webex - Fatal编程技术网

Java Cisco Webex API异常

Java Cisco Webex API异常,java,xml,cisco,webex,Java,Xml,Cisco,Webex,我已经成功地使用了其他几个WebExAPI,但是“LstrecordaccessDetailHistory XML请求”不起作用 我从XML响应中得到了以下消息: 无法实例化 com.webex.xmlapi.service.binding.history.lstrecordaccessDetailHistory; java.lang.ClassNotFoundException: com.webex.xmlapi.service.binding.history.lstrecordaccessD

我已经成功地使用了其他几个WebExAPI,但是“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>";
String strXML=“\r\n”;
strXML+=“\r\n”;
strXML+=“”;
strXML+=“”;
strXML+=“密码”;
strXML+=“站点名称”;
strXML+=“电子邮件”;
strXML+=“”;
strXML+=“”;
strXML+=“”;
strXML+=“”;
strXML+=“recondID”;
strXML+=“timeZoneID”;
strXML+=“”;
strXML+=“1”;
strXML+=“500”;
strXML+=“或”;
strXML+=“”;
strXML+=“”;
strXML+=“”;
strXML+=“”;
给你


以前有人看过吗?

您的请求所依据的文档。您必须使用不同的
xsi:type

唯一支持的
xsi:type

xsi:type="java:com.webex.service.binding.history.LstmeetingusageHistory"
或是一条缩短的道路

xsi:type="history.LstmeetingusageHistory"
[…]至于模式-您是对的,对于 列出会议使用情况命令。我会让工程组把它修好 下一版本


您的请求所依据的文档。您必须使用不同的
xsi:type

唯一支持的
xsi:type

xsi:type="java:com.webex.service.binding.history.LstmeetingusageHistory"
或是一条缩短的道路

xsi:type="history.LstmeetingusageHistory"
[…]至于模式-您是对的,对于 列出会议使用情况命令。我会让工程组把它修好 下一版本


该文档已过期,不支持该节点。我将其更改为,它工作正常。该文档是我们的最新版本,不支持该节点。我把它改成了,它成功了。