Please note: These WebEx forums have replaced the earlier site forums. All the previous threads and posts have been replicated here, and if you subscribed to the previous forums, please re-subscribe. Thank you.
« Back to Getting Started

Need Help with XML API Meeting Service

Combination View Flat View Tree View
Threads [ Previous | Next ]
Hi, I'm a WebEx noob, so please bear with me!
 
I'm trying to simply list all scheduled meetings, but I keep getting a response that says no record found. I've tried this on the apidemoeu site as well with the code example in the API but get the same result. I'm sure I'm just missing something simple, so any help would be appreciated.
 
The XML I'm sending is:

 1<?xml version="1.0" encoding="UTF-8"?>
 2<serv:message xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:serv="http://www.webex.com/schemas/2002/06/service">
 3<header>
 4<securityContext>
 5<webExID>(my webex host id)</webExID>
 6<password>(my password)</password>
 7<siteID>(our site id)</siteID>
 8<partnerID>(our partner id)</partnerID>
 9<email>(my email)</email>
10</securityContext>
11</header>
12<body>
13<bodyContent xsi:type="java:com.webex.service.binding.meeting.LstsummaryMeeting" xmlns:meet="http://www.webex.com/schemas/2002/06/service/meeting">
14<listControl>
15<startFrom/>
16<maximumNum>5</maximumNum>
17</listControl>
18<order>
19<orderBy>STARTTIME</orderBy>
20</order>
21<dateScope></dateScope>
22</bodyContent>
23</body>
24</serv:message>


 
The XML Response is:

 1<?xml version="1.0" encoding="UTF-8"?>
 2<serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service" xmlns:com="http://www.webex.com/schemas/2002/06/common" xmlns:meet="http://www.webex.com/schemas/2002/06/service/meeting" xmlns:att="http://www.webex.com/schemas/2002/06/service/attendee">
 3<serv:header>
 4<serv:response>
 5<serv:result>FAILURE</serv:result>
 6<serv:reason>Sorry, no record found</serv:reason>
 7<serv:gsbStatus>PRIMARY</serv:gsbStatus>
 8<serv:exceptionID>000015</serv:exceptionID>
 9</serv:response>
10</serv:header>
11<serv:body>
12<serv:bodyContent/>
13</serv:body>
14</serv:message>

 
I know I have at least a couple public events scheduled. Any help is appreciated!

For anyone else having this problem, I figured out that I was calling the wrong service. I trying to pull events using the meeting service, when I should have been using the event service. Stupid mistake, but like I said... I'm a noob :-)

have a problem about meeting service, are you sure ? you had create a meeting . if current time not have meeting, (respone sorry, no record found).
Fix code:
strep1: http://www.webex.com/ click host a meeting and log in
step2: click meeting center/host a meeting/schedule meeting/ and click start meeting
step3: run yours code.\(respone SUCCESS)

you try code with CreateMeeting before LstsummaryMeeting, because you must have meeting, you can run code LstsummaryMeeting
xsi:type="java:com.webex.service.binding.meeting.CreateMeeting"

p/s because i'm vietnamese, my foreign language is very bad...sorry
thanks
dinh le!

Create a Cisco account today and gain access across all Cisco Collaboration Developer sites.

 

Follow the WebEx Developer program on Twitter for the latest industry and WebEx Meetings related information.