lex created OPENMEETINGS-1899:
---------------------------------

             Summary: Create room via SOAP API with: closed = false
                 Key: OPENMEETINGS-1899
                 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1899
             Project: Openmeetings
          Issue Type: Bug
          Components: SOAP/REST API
    Affects Versions: 4.0.4
            Reporter: lex
            Assignee: Maxim Solodovnik
         Attachments: om1.JPG

I try by use PHP and Zend_Soap_Client for create Openmeeting rooms.
{code:java}
$this->roomService = new Zend_Soap_Client($this->openMeetingUrl . 
'/RoomService?wsdl',array('soap_version' => SOAP_1_1));

                $res = $this->roomService->add(
                        array('sid'  => $this->session_id,
                              'room' => array(
                                        'name' => $name,
                                        'comment' => $comment,
                                        'type' => 'conference',
                                        'capacity' => $capacity,
                                        'appointment' => false,
                                        'isPublic' => false,
                                        'demo'  => true,
                                        'closed' => false,
                                        'moderated' => false,
                                        'allowUserQuestions' => true,
                                        'allowRecording'  => true,
                                        'waitForRecording' =>false,
                                        'audioOnly' => false,
                                        )
                        )
);
{code}
 

Found trouble that room created alvays in closed mode where closed = true .

If in administrator mode I uncheck {color:#362b36}Room termination settings : 
{color:#362b36}Close room{color} manually only then, I can open room by hash 
inv.{color}

How I can create room via SOAP API with closed = false, or how can change 
valuses of created room?

How I can add moderators list to room via SOAP API ?

 

 

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to