cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
170
Views
0
Helpful
0
Comments
cdnadmin
Level 11
Level 11
This document was generated from CDN thread

Created by: abhishek saxena on 09-11-2010 02:57:44 PM
Hi
 
I am scheduling a webex meeting using CreateMeeting XML API but, the attendees are getting the HOST URL in email invitations, which is wrong.
 
Its was working fine last month. Have the CreateMeeting XML API is updated.....??????
 
Please help asap.
 
 
 
Regards
 
ABHISHEK SAXENA

Subject: RE: Error : Wrong Invitations URL to the attendees(XML API)
Replied by: abhishek saxena on 09-11-2010 03:26:18 PM
Also
 
I have used XML API 5.5 Reference Guide.pdf.
 
PROBLEM 1:
Attendees are getting wrong Time to join the meeting.
I have scheduled at 8:32pm.



Hello ,

ABC invites you to attend this online meeting.

Topic: NEW WEBEX
Date: Tuesday, November 9, 2010
Time: 8:32 am, India Time (Mumbai, GMT+05:30) Meeting Number: 343 882 754 Meeting Password: 12345


 

 
PROBLEM 2:
Also, when attendees join the meeting...Participants Panel is not visible and Chat feature is disabled.
The panels are visible for the host but not for the attendees
 
I have attached the image of my webex meeting.
 
Please reply asap
 
 
Regards

Subject: RE: Error : Wrong Invitations URL to the attendees(XML API)
Replied by: sun man on 10-11-2010 02:16:16 AM
Hi
 
I am scheduling a webex meeting using CreateMeeting XML API but, the attendees are getting the HOST URL in email invitations, which is wrong.
 
Its was working fine last month. Have the CreateMeeting XML API is updated.....??????
 
Please help asap.
 
 
 
Regards
 
ABHISHEK SAXENA


Hi Fri,
 
I think I can help your problem. Previous time I also have like your problem. After creatin WebEx meeting by using XML API. Return status is important (SUCCESS or FAILURE). If SUCCESS, you will got the URL Links. But you should use emailInvitatios property to send emails to host and attendees by WebEx Email servce. Please see the example in follow. This example is working well and automatically send the invitatin link to host and attendes.
 
XML API REQUEST
 
<?xml version="1.0" encoding="ISO-8859-1"?>
<serv:message xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<header>
 <securityContext>
  <webExID>__WEBEXID__</webExID>
  <password>__PASSWORD__</password>
  <siteID>__SITEID__</siteID>
  <partnerID>__PARTNERID__</partnerID>
  <email>__EMAIL__</email>
 </securityContext>
</header>
<body>
 <bodyContent xsi:type="java:com.webex.service.binding.meeting.CreateMeeting">
  <accessControl>
   <meetingPassword>dd1234</meetingPassword>
  </accessControl>
  <metaData>
   <confName>Coming Tueday Meeting Schedule</confName>
   <meetingType>113</meetingType>
   <agenda>Test</agenda>
  </metaData>
  <participants>
   <maxUserNumber>4</maxUserNumber>
   <attendees>
    <attendee>
     <person>
      <email>yourfriendemail01@gmail.com</email>
     </person>
     <emailInvitations>TRUE</emailInvitations>
    </attendee>
    <attendee>
     <person>
      <email>yourfriendemail02@gmail.com</email>
     </person>
     <emailInvitations>TRUE</emailInvitations>
    </attendee>
    </attendees>
  </participants>
  <enableOptions>
   <chat>true</chat>
   <poll>true</poll>
   <audioVideo>true</audioVideo>
  </enableOptions>
  <schedule>
   <startDate>11/02/2010 13:00:00</startDate>
   <joinTeleconfBeforeHost>false</joinTeleconfBeforeHost>
   <duration>20</duration>
   <timeZoneID>47</timeZoneID>
  </schedule>
  <telephony>
   <telephonySupport>CALLIN</telephonySupport>
   <extTelephonyDescription>
   Call 1-800-555-1234, Passcode 98765
   </extTelephonyDescription>
  </telephony>
  <attendeeOptions>
   <auto>TRUE</auto>
   <emailInvitations>TRUE</emailInvitations>
  </attendeeOptions>
 </bodyContent>
</body>
</serv:message>
 
 
I think you need to change the meetingType in your coding.
emailInvtations value must be TRUE.
 
 
 
With Regards,
Nay La

Subject: RE: Error : Wrong Invitations URL to the attendees(XML API)
Replied by: sun man on 10-11-2010 02:41:52 AM
Also
 
I have used XML API 5.5 Reference Guide.pdf.
 
PROBLEM 1:
Attendees are getting wrong Time to join the meeting.
I have scheduled at 8:32pm.




Hello ,

ABC invites you to attend this online meeting.

Topic: NEW WEBEX
Date: Tuesday, November 9, 2010
Time: 8:32 am, India Time (Mumbai, GMT+05:30) Meeting Number: 343 882 754 Meeting Password: 12345


 


 
PROBLEM 2:
Also, when attendees join the meeting...Participants Panel is not visible and Chat feature is disabled.
The panels are visible for the host but not for the attendees
 
I have attached the image of my webex meeting.
 
Please reply asap
 
 
Regards

 
Problem 1
 
There is two time zone infomation in creating meetng session. One is for webEx meeting and the other one is for attendee. Please see the detail in follow.
 
For webEx Meetng time zone
You should use timeZoneID property under the schedule.
 
<schedule>
   <startDate>11/02/2010 13:00:00</startDate>
   <joinTeleconfBeforeHost>false</joinTeleconfBeforeHost>
   <duration>20</duration>
   <timeZoneID>47</timeZoneID>
  </schedule>
 
For Attendee's time zone
You should use timeZoneID property under the attendee.
 
<participants>
   <maxUserNumber>4</maxUserNumber>
   <attendees>
    <attendee>
     <person>
      <email>email01@gmail.com</email>
     </person>
     <emailInvitations>TRUE</emailInvitations>
     <timeZoneID>47</timeZoneID>
    </attendee>
    <attendee>
     <person>
      <email>email02@gmail.com</email>
     </person>
     <emailInvitations>TRUE</emailInvitations>
     <timeZoneID>47</timeZoneID>
    </attendee>
   </attendees>
  </participants>
 
 
 
 
Problem 2
 
You can enable all the setting by using enableOptions. There are a lot of setting under enableOptions (see in page 696).
For Example:
 
<enableOptions>
     <chat>TRUE</chat>
     <attendeeList>TRUE</attendeeList>
</enableOptions>
 
 
 
Notes...
 
Please go and see in page 615 for timeZoneID value information.
In the reference guide ebook, there are a lot of presentatin pictures. Don't just look it. If you click the pictures icon, it will show you what is this, how to use and what is the value you can use in this setting.
 
If you know how to click the picture in this book, you will be master.

 
 
 
with regards,
Nay La

Subject: RE: Error : Wrong Invitations URL to the attendees(XML API)
Replied by: abhishek saxena on 10-11-2010 05:00:12 AM
 
Hi Nay La,
 
Thanks for the great help. I will implement your suggestions now. Also, i want to ask, what does MeetingType=113 means.
 
 
 
Regards
 
ABHISHEK SAXENA

Subject: RE: Error : Wrong Invitations URL to the attendees(XML API)
Replied by: sun man on 10-11-2010 07:14:07 AM
 
Hi Nay La,
 
Thanks for the great help. I will implement your suggestions now. Also, i want to ask, what does MeetingType=113 means.
 
 
 
Regards
 
ABHISHEK SAXENA


Hi Abhishek Saxena,
 
Please read the MeetingType information in page 251. We must use integer value for MeetingType. Please see some available meeting type informatin in follow.
 
Value     Name                                         Note
113        Meeting Center Pro Eval 4x20        I got from my DEV account.
128        Meeting Center TC Eval 4x20         I got from my DEV account.
0016      Other Teleconference Service         I got from my DEV account.
16          WebEx Personal Conference          I got from my DEV account.
213        Meeting Center Pro 100                 I got from my DEMO account.
 
I got all this value from my Developer account and Demo account.
 
 
with regards,
Nay La
Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Quick Links