1

他のいくつかの Webex API を正常に使用しましたが、「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>";

Ciscoのドキュメントは次のとおりです。

誰もこれを経験したことがありますか?

4

1 に答える 1

0

残念ながら、リクエストの元となったドキュメントは古くなっています。別のものを使用する必要がありますxsi:type:

サポートさxsi:typeれているのは、次のフル パスのみです。

xsi:type="java:com.webex.service.binding.history.LstmeetingusageHistory"

または短縮されたパス

xsi:type="history.LstmeetingusageHistory"

[...] スキーマについて - そのとおりです。リスト会議の使用コマンドについては間違っています。次のリリースでエンジニアリング チームに修正してもらいます。

于 2015-07-25T01:02:17.367 に答える