You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by "lex (JIRA)" <ji...@apache.org> on 2018/06/16 00:31:00 UTC

[jira] [Updated] (OPENMEETINGS-1899) Create room via SOAP API with: closed = false

     [ https://issues.apache.org/jira/browse/OPENMEETINGS-1899?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

lex updated OPENMEETINGS-1899:
------------------------------
    Description: 
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 when room was created always have in closed mode where closed = true .

If in administrator mode I unchecked {color:#362b36}Room termination settings : Close room{color} 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 ?

 

 

 

  was:
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 ?

 

 

 


> 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
>            Priority: Major
>         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 when room was created always have in closed mode where closed = true .
> If in administrator mode I unchecked {color:#362b36}Room termination settings : Close room{color} 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 ?
>  
>  
>  



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