Adobe Connect User Community
Menu

#1 2016-04-29 15:01:25

Ilia-BNC-HRIT

XML API - Creating private meetings

Hey everyone!

We are deploying an LMS from SAP and currently integrating it with AdobeConnect Meeting feature with an XML API calls.

Currently all API created meeting are PUBLIC, meaning anyone with the URL can join them.

Is there any way to change that default behaviour to create private meetings instead?

Here's our XML:



<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> <connector>
   <description>Macromedia Breeze</description>
   <!-- The plateau connector class. This should not be modified. It is the implementation class for Breeze. -->     
<connector_class>abcd</connector_class>

   <!-- ======================================= -->
   
   <!-- configuration parameters for Breeze  -->

   <!-- ======================================= -->

   <!-- Server specific information -->
   <xml_api_address>https://abcd.adobeconnect.com/api/xml</xml_api_address>
   <server_address>https://abcd.adobeconnect.com</server_address>
   <!-- Breeze Administrator User Credentials-->
   <username>abcd</username>
   <password>abcd</password>
  <!-- Breeze Custom field-id -->
   <!-- When installing a new Breeze Server Database, administrator adds a custom fields and updates field-ids here-->
   <lms_user_name_custom_field_id>x-abcd</lms_user_name_custom_field_id>
   <lms_user_type_custom_field_id>x-abcd</lms_user_type_custom_field_id>

   <!-- Breeze Folder ID in which new Meetings are created. Obtain from Breeze Installation-->
   <folder_id>abcd</folder_id>
   
   <!-- Breeze Learner Group ID-->
   <learner_group_id>abcd</learner_group_id>
     
   <!-- Breeze Instructor Group ID-->
   <instructor_group_id>abcd</instructor_group_id>   

   <!-- the default account password for learner/student -->
   <!-- Min password length =4, max password length=16 -->
   <learner_default_password>abcd</learner_default_password>
   <!-- ======================================= -->
   <!-- configuration parameters for Plateau    -->
   <!-- ======================================= -->
   <!-- The ELMS server VLS configuration URL -->
   <elms_url_prefix>/abcd</elms_url_prefix>
   <!-- synchronously call the Breeze API
        # true: perform the request immediately
        # false: submit requests to create events, accounts and enroll students in batch mode
        # synchronous mode can be done with a fast connection to the server but is not recommended
        # if performance is an issue -->
   <sync>true</sync>
</connector>


Data sent by LMS...Maps to this parameter in Adobe Connect

The value view-hidden.
permission-id

The meeting ID returned from sco-update.
acl-id

The value public-access
principal-idacl

Offline

#2 2016-04-29 15:18:27

Jorma_at_CoSo

Re: XML API - Creating private meetings

If you want your meetings to be private you should set the permission-id value to:

access&permission-id=denied

Source, bottom of this page: https://helpx.adobe.com/adobe-connect/w … tings.html

Offline

Board footer