Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Information Provided
-
4.0.4
-
None
-
None
-
openmeetings/services/RoomService?wsdl
Description
I try by use PHP and Zend_Soap_Client for create Openmeeting rooms.
$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, ) ) );
Found trouble that when room was created always have in closed mode where closed = true .
If in administrator mode I unchecked Room termination settings : Close room manually only then, I can open room by hash inv.
How I can create room via SOAP API with closed = false, or how can change values of created room?
How I can add moderators list to room via SOAP API ?