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 Scheduling Meetings

RE: Call-In no longer available?

Combination View Flat View Tree View
Threads [ Previous | Next ]
Call-In no longer available?
createmeeting create meeting meeting type
Answer
9/5/12 8:42 PM
Hey guys,
 
I haven't touched my code in a while, and I just noticed that when my meetings get scheduled the call-in feature that used to be there is no longer available. The conference does not provide a number for users to call in as it used to.
 
 
<?php
function createMeeting() {

$xml = '';
$xml = '<serv:message xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">';
$xml .= '<header>';
$xml .= '<securityContext>';
$xml .= '<webExID>'.$webExID.'</webExID>';
$xml .= '<password>'.$password.'</password>';
$xml .= '<siteName>'.$sitename.'</siteName>';
$xml .= '</securityContext>';
$xml .= '</header>';
$xml .= '<body>';
$xml .= '<bodyContent xsi:type="java:com.webex.service.binding.meeting.CreateMeeting">';
        $xml .= '<accessControl>';
            $xml .= '<meetingPassword>'.$meeting_password.'</meetingPassword>';
        $xml .= '</accessControl>';

        $xml .= '<metaData>';
            $xml .= '<confName>'.$title.'</confName>';
            $xml .= '<meetingType>123</meetingType>';
        $xml .= '</metaData>';

        $xml .= '<enableOptions>';
            $xml .= '<multiVideo>True</multiVideo>';
            $xml .= '<audioVideo>True</audioVideo>';
            $xml .= '<supportUCFRichMedia>true</supportUCFRichMedia>';
            $xml .= '<chatAllAttendees>true</chatAllAttendees>';
            $xml .= '<chatHost>true</chatHost>';
            $xml .= '<chatPresenter>true</chatPresenter>';
            $xml .= '<attendeeList>true</attendeeList>';
        $xml .= '</enableOptions>';

        $xml .='<participants>';
            $xml .='<maxUserNumber>'.$userNumbers.'</maxUserNumber>';
            $xml .='<attendees>';
                $xml .='<attendee>';  
                    $xml .='<person>';
                        $xml .='<name>'.$host_name.'</name>';
                        $xml .='<email>'.$host_email.'</email>';
                    $xml .='</person>';
                    $xml .='<role>HOST</role>';
                $xml .='</attendee>';
                $xml .='<attendee>';  
                    $xml .='<person>';
                        $xml .='<name>'.$speaker_name.'</name>';
                        $xml .='<email>'.$speaker_email.'</email>';
                    $xml .='</person>';
                    $xml .='<role>ATTENDEE</role>';
                $xml .='</attendee>';
            $xml .='</attendees>';
        $xml .='</participants>';

        $xml .= '<schedule>';
            $xml .= '<startDate>'.$start_date.'</startDate>';
            $xml .= '<duration>'.$duration.'</duration>';
            $xml .= '<timeZoneID>20</timeZoneID>';
        $xml .= '</schedule>';
$xml .= '</bodyContent>';
$xml .= '</body>';
$xml .= '</serv:message>';
}
?>
 
 
Now it works, and schedules the meeting. However, the number to call in is no longer available as it used to be.
I'm an active subscriber of the Meeting Center 25 so I'm wondering if it's something I need to add to my request or enable in my WebEx platform. Thank you
 
 
Some

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.