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

[jira] [Commented] (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:comment-tabpanel&focusedCommentId=16518880#comment-16518880 ] 

Maxim Solodovnik commented on OPENMEETINGS-1899:
------------------------------------------------

Hello,

{{'closed' == false}} by default, you can just skip this parameter

I believe the problem is in {{Zend_Soap_Client}} which seems to serialize boolean values into something OM can't read properly

Can you chak OM logs to ensure?

> 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)