You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@openmeetings.apache.org by Bhushan Patil <th...@gmail.com> on 2015/01/07 12:07:33 UTC

Help : How to disable recording for room by soap api ?

Hello everyone, I am using Openmeetings 3.0.3 version. I am calling soap
api as follows

1> Getting session
    localhost:5080/openmeetings/services/UserService/getSession
2> Login

localhost:5080/openmeetings/services/UserService/loginUser?SID=1c029de4ca577292045a89dc52832cbf&userpass=bhushan&username=bhushan
3> Creating room

localhost:5080/openmeetings/services/openmeetings/services/RoomService/addRoomWithModerationAndRecordingFlags?SID=1c029de4ca577292045a89dc52832cbf&name=Shala_NoRec&roomtypes_id=1&comment=no_comment&numberOfPartizipants=10&ispublic=0&appointment=0&isDemoRoom=0&demoTime=0&isModeratedRoom=0&externalRoomType=dronna&allowUserQuestions=1&isAudioOnly=1&waitForRecording=1&allowRecording=0
4> Get hash URL for that room

localhost:5080/openmeetings/services/UserService/setUserObjectAndGenerateRoomHashByURL?SID=1c029de4ca577292045a89dc52832cbf&username=bhushan&firstname=BhushanBhau&lastname=Patil&profilePictureUrl=abcg&externalUserId=1&email=
none@none.com
&externalUserType=dronna&room_id=11&becomeModeratorAsInt=1&showAudioVideoTestAsInt=0

In 3rd step, I have set flag 'allowRecording' to false, ie
allowRecording=0, Still it is allowing me to record the meeting.
Is this bug or Am I doing something wrong ?

Any help is appreciated.

Re: Help : How to disable recording for room by soap api ?

Posted by Maxim Solodovnik <so...@gmail.com>.
you need to use this method:
http://openmeetings.apache.org/openmeetings-webservice/apidocs/org/apache/openmeetings/webservice/UserWebService.html#setUserObjectAndGenerateRoomHashByURLAndRecFlag(java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.Long,%20int,%20int,%20int)

room option is currently ignored :(
will be fixed in 3.0.4

On Tue, Jan 13, 2015 at 10:52 AM, Maxim Solodovnik <so...@gmail.com>
wrote:

> It seems like options are slightly differs
> "hideScreenSharing" totally removes both sharing and recording
> "allowRecording" should remove recording but make sharing available
>
> On Tue, Jan 13, 2015 at 10:33 AM, Abhishek Yadav <
> abhishek.yadav@hiddenbrains.in> wrote:
>
>> Yes Bhushan,
>>
>> Currently same flag is used for both screen sharing and recording.
>> For that i need to create JIRA issue as Maxim already said.
>> It might be fix in next release.
>>
>> On Mon, Jan 12, 2015 at 10:11 PM, Bhushan Patil <
>> thebhushanpatil@gmail.com> wrote:
>>
>>>  Hello Abhishek, If I use 'hideScreenSharing' option as false, then I
>>> won't able to share screen. Thats what I don't want. :(
>>>
>>> On Monday 12 January 2015 10:01 AM, Abhishek Yadav wrote:
>>>
>>> Hello Bhushan,
>>>
>>>  It is better if you use
>>> "addRoomWithModerationQuestionsAudioTypeAndHideOptions".
>>> Use hideScreenSharing options (true or false).
>>>
>>>  It will show or hide the recording and screen sharing option. I used
>>> this option previously. I means that applet will never come into picture
>>> (if hideScreenSharing=true) as the button on top-right side is not visible.
>>> Both screensharing and recording will hide.
>>>
>>>
>>>
>>> On Sun, Jan 11, 2015 at 7:56 PM, Maxim Solodovnik <so...@gmail.com>
>>> wrote:
>>>
>>>>  Quick investigation shows this option might be broken :(
>>>>
>>>>  I'll try to perform additional check later
>>>>
>>>> On Sun, Jan 11, 2015 at 5:44 PM, Bhushan Patil <
>>>> thebhushanpatil@gmail.com> wrote:
>>>>
>>>>>  I tried that couple of times so I guess, only option left for me is
>>>>> to debug it. Anyways, what is expected behavior of
>>>>> "setUserObjectAndGenerateRoomHashByURLAndRecFlag" ? I mean, does it hide
>>>>> the 'record and share' button from room or it doesn't not show 'recording'
>>>>> option on applet ?
>>>>> As always, appreciates your help.
>>>>> Thanks.
>>>>> On Sunday 11 January 2015 10:59 AM, Maxim Solodovnik wrote:
>>>>>
>>>>> I don't know
>>>>> Maybe wrong params?
>>>>>
>>>>> WBR, Maxim
>>>>> (from mobile, sorry for the typos)
>>>>> On Jan 11, 2015 10:47 AM, "Bhushan Patil" <th...@gmail.com>
>>>>> wrote:
>>>>>
>>>>>>  Hello Maxim, I tried
>>>>>> "setUserObjectAndGenerateRoomHashByURLAndRecFlag" also. Still it allowing
>>>>>> me to do recording and strange thing is that 'allow_recording' column of
>>>>>> table 'room' of that room is set to 0. What could be problem ?
>>>>>> On Thursday 08 January 2015 08:16 PM, Maxim Solodovnik wrote:
>>>>>>
>>>>>> you need to use "setUserObjectAndGenerateRoomHashByURLAndRecFlag" on
>>>>>> the 4th step
>>>>>>
>>>>>> On Wed, Jan 7, 2015 at 5:07 PM, Bhushan Patil <
>>>>>> thebhushanpatil@gmail.com> wrote:
>>>>>>
>>>>>>>  Hello everyone, I am using Openmeetings 3.0.3 version. I am
>>>>>>> calling soap api as follows
>>>>>>>
>>>>>>> 1> Getting session
>>>>>>>     localhost:5080/openmeetings/services/UserService/getSession
>>>>>>> 2> Login
>>>>>>>
>>>>>>> localhost:5080/openmeetings/services/UserService/loginUser?SID=1c029de4ca577292045a89dc52832cbf&userpass=bhushan&username=bhushan
>>>>>>> 3> Creating room
>>>>>>>
>>>>>>> localhost:5080/openmeetings/services/openmeetings/services/RoomService/addRoomWithModerationAndRecordingFlags?SID=1c029de4ca577292045a89dc52832cbf&name=Shala_NoRec&roomtypes_id=1&comment=no_comment&numberOfPartizipants=10&ispublic=0&appointment=0&isDemoRoom=0&demoTime=0&isModeratedRoom=0&externalRoomType=dronna&allowUserQuestions=1&isAudioOnly=1&waitForRecording=1&allowRecording=0
>>>>>>>  4> Get hash URL for that room
>>>>>>>
>>>>>>> localhost:5080/openmeetings/services/UserService/setUserObjectAndGenerateRoomHashByURL?SID=1c029de4ca577292045a89dc52832cbf&username=bhushan&firstname=BhushanBhau&lastname=Patil&profilePictureUrl=abcg&externalUserId=1&email=
>>>>>>> none@none.com
>>>>>>> &externalUserType=dronna&room_id=11&becomeModeratorAsInt=1&showAudioVideoTestAsInt=0
>>>>>>>
>>>>>>> In 3rd step, I have set flag 'allowRecording' to false, ie
>>>>>>> allowRecording=0, Still it is allowing me to record the meeting.
>>>>>>> Is this bug or Am I doing something wrong ?
>>>>>>>
>>>>>>> Any help is appreciated.
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>  --
>>>>>> WBR
>>>>>> Maxim aka solomax
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>
>>>>
>>>>  --
>>>> WBR
>>>> Maxim aka solomax
>>>>
>>>
>>>
>>>
>>
>
>
> --
> WBR
> Maxim aka solomax
>



-- 
WBR
Maxim aka solomax

Re: Help : How to disable recording for room by soap api ?

Posted by Maxim Solodovnik <so...@gmail.com>.
It seems like options are slightly differs
"hideScreenSharing" totally removes both sharing and recording
"allowRecording" should remove recording but make sharing available

On Tue, Jan 13, 2015 at 10:33 AM, Abhishek Yadav <
abhishek.yadav@hiddenbrains.in> wrote:

> Yes Bhushan,
>
> Currently same flag is used for both screen sharing and recording.
> For that i need to create JIRA issue as Maxim already said.
> It might be fix in next release.
>
> On Mon, Jan 12, 2015 at 10:11 PM, Bhushan Patil <thebhushanpatil@gmail.com
> > wrote:
>
>>  Hello Abhishek, If I use 'hideScreenSharing' option as false, then I
>> won't able to share screen. Thats what I don't want. :(
>>
>> On Monday 12 January 2015 10:01 AM, Abhishek Yadav wrote:
>>
>> Hello Bhushan,
>>
>>  It is better if you use
>> "addRoomWithModerationQuestionsAudioTypeAndHideOptions".
>> Use hideScreenSharing options (true or false).
>>
>>  It will show or hide the recording and screen sharing option. I used
>> this option previously. I means that applet will never come into picture
>> (if hideScreenSharing=true) as the button on top-right side is not visible.
>> Both screensharing and recording will hide.
>>
>>
>>
>> On Sun, Jan 11, 2015 at 7:56 PM, Maxim Solodovnik <so...@gmail.com>
>> wrote:
>>
>>>  Quick investigation shows this option might be broken :(
>>>
>>>  I'll try to perform additional check later
>>>
>>> On Sun, Jan 11, 2015 at 5:44 PM, Bhushan Patil <
>>> thebhushanpatil@gmail.com> wrote:
>>>
>>>>  I tried that couple of times so I guess, only option left for me is to
>>>> debug it. Anyways, what is expected behavior of
>>>> "setUserObjectAndGenerateRoomHashByURLAndRecFlag" ? I mean, does it hide
>>>> the 'record and share' button from room or it doesn't not show 'recording'
>>>> option on applet ?
>>>> As always, appreciates your help.
>>>> Thanks.
>>>> On Sunday 11 January 2015 10:59 AM, Maxim Solodovnik wrote:
>>>>
>>>> I don't know
>>>> Maybe wrong params?
>>>>
>>>> WBR, Maxim
>>>> (from mobile, sorry for the typos)
>>>> On Jan 11, 2015 10:47 AM, "Bhushan Patil" <th...@gmail.com>
>>>> wrote:
>>>>
>>>>>  Hello Maxim, I tried
>>>>> "setUserObjectAndGenerateRoomHashByURLAndRecFlag" also. Still it allowing
>>>>> me to do recording and strange thing is that 'allow_recording' column of
>>>>> table 'room' of that room is set to 0. What could be problem ?
>>>>> On Thursday 08 January 2015 08:16 PM, Maxim Solodovnik wrote:
>>>>>
>>>>> you need to use "setUserObjectAndGenerateRoomHashByURLAndRecFlag" on
>>>>> the 4th step
>>>>>
>>>>> On Wed, Jan 7, 2015 at 5:07 PM, Bhushan Patil <
>>>>> thebhushanpatil@gmail.com> wrote:
>>>>>
>>>>>>  Hello everyone, I am using Openmeetings 3.0.3 version. I am calling
>>>>>> soap api as follows
>>>>>>
>>>>>> 1> Getting session
>>>>>>     localhost:5080/openmeetings/services/UserService/getSession
>>>>>> 2> Login
>>>>>>
>>>>>> localhost:5080/openmeetings/services/UserService/loginUser?SID=1c029de4ca577292045a89dc52832cbf&userpass=bhushan&username=bhushan
>>>>>> 3> Creating room
>>>>>>
>>>>>> localhost:5080/openmeetings/services/openmeetings/services/RoomService/addRoomWithModerationAndRecordingFlags?SID=1c029de4ca577292045a89dc52832cbf&name=Shala_NoRec&roomtypes_id=1&comment=no_comment&numberOfPartizipants=10&ispublic=0&appointment=0&isDemoRoom=0&demoTime=0&isModeratedRoom=0&externalRoomType=dronna&allowUserQuestions=1&isAudioOnly=1&waitForRecording=1&allowRecording=0
>>>>>>  4> Get hash URL for that room
>>>>>>
>>>>>> localhost:5080/openmeetings/services/UserService/setUserObjectAndGenerateRoomHashByURL?SID=1c029de4ca577292045a89dc52832cbf&username=bhushan&firstname=BhushanBhau&lastname=Patil&profilePictureUrl=abcg&externalUserId=1&email=
>>>>>> none@none.com
>>>>>> &externalUserType=dronna&room_id=11&becomeModeratorAsInt=1&showAudioVideoTestAsInt=0
>>>>>>
>>>>>> In 3rd step, I have set flag 'allowRecording' to false, ie
>>>>>> allowRecording=0, Still it is allowing me to record the meeting.
>>>>>> Is this bug or Am I doing something wrong ?
>>>>>>
>>>>>> Any help is appreciated.
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>>  --
>>>>> WBR
>>>>> Maxim aka solomax
>>>>>
>>>>>
>>>>>
>>>>
>>>
>>>
>>>  --
>>> WBR
>>> Maxim aka solomax
>>>
>>
>>
>>
>


-- 
WBR
Maxim aka solomax

Re: Help : How to disable recording for room by soap api ?

Posted by Abhishek Yadav <ab...@hiddenbrains.in>.
Yes Bhushan,

Currently same flag is used for both screen sharing and recording.
For that i need to create JIRA issue as Maxim already said.
It might be fix in next release.

On Mon, Jan 12, 2015 at 10:11 PM, Bhushan Patil <th...@gmail.com>
wrote:

>  Hello Abhishek, If I use 'hideScreenSharing' option as false, then I
> won't able to share screen. Thats what I don't want. :(
>
> On Monday 12 January 2015 10:01 AM, Abhishek Yadav wrote:
>
> Hello Bhushan,
>
>  It is better if you use
> "addRoomWithModerationQuestionsAudioTypeAndHideOptions".
> Use hideScreenSharing options (true or false).
>
>  It will show or hide the recording and screen sharing option. I used
> this option previously. I means that applet will never come into picture
> (if hideScreenSharing=true) as the button on top-right side is not visible.
> Both screensharing and recording will hide.
>
>
>
> On Sun, Jan 11, 2015 at 7:56 PM, Maxim Solodovnik <so...@gmail.com>
> wrote:
>
>>  Quick investigation shows this option might be broken :(
>>
>>  I'll try to perform additional check later
>>
>> On Sun, Jan 11, 2015 at 5:44 PM, Bhushan Patil <thebhushanpatil@gmail.com
>> > wrote:
>>
>>>  I tried that couple of times so I guess, only option left for me is to
>>> debug it. Anyways, what is expected behavior of
>>> "setUserObjectAndGenerateRoomHashByURLAndRecFlag" ? I mean, does it hide
>>> the 'record and share' button from room or it doesn't not show 'recording'
>>> option on applet ?
>>> As always, appreciates your help.
>>> Thanks.
>>> On Sunday 11 January 2015 10:59 AM, Maxim Solodovnik wrote:
>>>
>>> I don't know
>>> Maybe wrong params?
>>>
>>> WBR, Maxim
>>> (from mobile, sorry for the typos)
>>> On Jan 11, 2015 10:47 AM, "Bhushan Patil" <th...@gmail.com>
>>> wrote:
>>>
>>>>  Hello Maxim, I tried "setUserObjectAndGenerateRoomHashByURLAndRecFlag"
>>>> also. Still it allowing me to do recording and strange thing is that
>>>> 'allow_recording' column of table 'room' of that room is set to 0. What
>>>> could be problem ?
>>>> On Thursday 08 January 2015 08:16 PM, Maxim Solodovnik wrote:
>>>>
>>>> you need to use "setUserObjectAndGenerateRoomHashByURLAndRecFlag" on
>>>> the 4th step
>>>>
>>>> On Wed, Jan 7, 2015 at 5:07 PM, Bhushan Patil <
>>>> thebhushanpatil@gmail.com> wrote:
>>>>
>>>>>  Hello everyone, I am using Openmeetings 3.0.3 version. I am calling
>>>>> soap api as follows
>>>>>
>>>>> 1> Getting session
>>>>>     localhost:5080/openmeetings/services/UserService/getSession
>>>>> 2> Login
>>>>>
>>>>> localhost:5080/openmeetings/services/UserService/loginUser?SID=1c029de4ca577292045a89dc52832cbf&userpass=bhushan&username=bhushan
>>>>> 3> Creating room
>>>>>
>>>>> localhost:5080/openmeetings/services/openmeetings/services/RoomService/addRoomWithModerationAndRecordingFlags?SID=1c029de4ca577292045a89dc52832cbf&name=Shala_NoRec&roomtypes_id=1&comment=no_comment&numberOfPartizipants=10&ispublic=0&appointment=0&isDemoRoom=0&demoTime=0&isModeratedRoom=0&externalRoomType=dronna&allowUserQuestions=1&isAudioOnly=1&waitForRecording=1&allowRecording=0
>>>>>  4> Get hash URL for that room
>>>>>
>>>>> localhost:5080/openmeetings/services/UserService/setUserObjectAndGenerateRoomHashByURL?SID=1c029de4ca577292045a89dc52832cbf&username=bhushan&firstname=BhushanBhau&lastname=Patil&profilePictureUrl=abcg&externalUserId=1&email=
>>>>> none@none.com
>>>>> &externalUserType=dronna&room_id=11&becomeModeratorAsInt=1&showAudioVideoTestAsInt=0
>>>>>
>>>>> In 3rd step, I have set flag 'allowRecording' to false, ie
>>>>> allowRecording=0, Still it is allowing me to record the meeting.
>>>>> Is this bug or Am I doing something wrong ?
>>>>>
>>>>> Any help is appreciated.
>>>>>
>>>>
>>>>
>>>>
>>>>  --
>>>> WBR
>>>> Maxim aka solomax
>>>>
>>>>
>>>>
>>>
>>
>>
>>  --
>> WBR
>> Maxim aka solomax
>>
>
>
>

Re: Help : How to disable recording for room by soap api ?

Posted by Bhushan Patil <th...@gmail.com>.
Hello Abhishek, If I use 'hideScreenSharing' option as false, then I 
won't able to share screen. Thats what I don't want. :(
On Monday 12 January 2015 10:01 AM, Abhishek Yadav wrote:
> Hello Bhushan,
>
> It is better if you use 
> "addRoomWithModerationQuestionsAudioTypeAndHideOptions". 
> Use hideScreenSharing options (true or false).
>
> It will show or hide the recording and screen sharing option. I used 
> this option previously. I means that applet will never come into 
> picture (if hideScreenSharing=true) as the button on top-right side is 
> not visible. Both screensharing and recording will hide.
>
>
>
> On Sun, Jan 11, 2015 at 7:56 PM, Maxim Solodovnik 
> <solomax666@gmail.com <ma...@gmail.com>> wrote:
>
>     Quick investigation shows this option might be broken :(
>
>     I'll try to perform additional check later
>
>     On Sun, Jan 11, 2015 at 5:44 PM, Bhushan Patil
>     <thebhushanpatil@gmail.com <ma...@gmail.com>> wrote:
>
>         I tried that couple of times so I guess, only option left for
>         me is to debug it. Anyways, what is expected behavior of
>         "setUserObjectAndGenerateRoomHashByURLAndRecFlag" ? I mean,
>         does it hide the 'record and share' button from room or it
>         doesn't not show 'recording' option on applet ?
>         As always, appreciates your help.
>         Thanks.
>         On Sunday 11 January 2015 10:59 AM, Maxim Solodovnik wrote:
>>
>>         I don't know
>>         Maybe wrong params?
>>
>>         WBR, Maxim
>>         (from mobile, sorry for the typos)
>>
>>         On Jan 11, 2015 10:47 AM, "Bhushan Patil"
>>         <thebhushanpatil@gmail.com
>>         <ma...@gmail.com>> wrote:
>>
>>             Hello Maxim, I tried
>>             "setUserObjectAndGenerateRoomHashByURLAndRecFlag" also.
>>             Still it allowing me to do recording and strange thing is
>>             that 'allow_recording' column of table 'room' of that
>>             room is set to 0. What could be problem ?
>>             On Thursday 08 January 2015 08:16 PM, Maxim Solodovnik wrote:
>>>             you need to use
>>>             "setUserObjectAndGenerateRoomHashByURLAndRecFlag" on the
>>>             4th step
>>>
>>>             On Wed, Jan 7, 2015 at 5:07 PM, Bhushan Patil
>>>             <thebhushanpatil@gmail.com
>>>             <ma...@gmail.com>> wrote:
>>>
>>>                 Hello everyone, I am using Openmeetings 3.0.3
>>>                 version. I am calling soap api as follows
>>>
>>>                 1> Getting session
>>>                 localhost:5080/openmeetings/services/UserService/getSession
>>>                 2> Login
>>>                 localhost:5080/openmeetings/services/UserService/loginUser?SID=1c029de4ca577292045a89dc52832cbf&userpass=bhushan&username=bhushan
>>>                 3> Creating room
>>>                 localhost:5080/openmeetings/services/openmeetings/services/RoomService/addRoomWithModerationAndRecordingFlags?SID=1c029de4ca577292045a89dc52832cbf&name=Shala_NoRec&roomtypes_id=1&comment=no_comment&numberOfPartizipants=10&ispublic=0&appointment=0&isDemoRoom=0&demoTime=0&isModeratedRoom=0&externalRoomType=dronna&allowUserQuestions=1&isAudioOnly=1&waitForRecording=1&allowRecording=0
>>>                 4> Get hash URL for that room
>>>                 localhost:5080/openmeetings/services/UserService/setUserObjectAndGenerateRoomHashByURL?SID=1c029de4ca577292045a89dc52832cbf&username=bhushan&firstname=BhushanBhau&lastname=Patil&profilePictureUrl=abcg&externalUserId=1&email=none@none.com
>>>                 <ma...@none.com>&externalUserType=dronna&room_id=11&becomeModeratorAsInt=1&showAudioVideoTestAsInt=0
>>>
>>>                 In 3rd step, I have set flag 'allowRecording' to
>>>                 false, ie allowRecording=0, Still it is allowing me
>>>                 to record the meeting.
>>>                 Is this bug or Am I doing something wrong ?
>>>
>>>                 Any help is appreciated.
>>>
>>>
>>>
>>>
>>>             -- 
>>>             WBR
>>>             Maxim aka solomax
>>
>
>
>
>
>     -- 
>     WBR
>     Maxim aka solomax
>
>


Re: Help : How to disable recording for room by soap api ?

Posted by Maxim Solodovnik <so...@gmail.com>.
Thanks!

On Mon, Jan 12, 2015 at 10:44 AM, Abhishek Yadav <
abhishek.yadav@hiddenbrains.in> wrote:

> Yes Maxim.
>
> Two options are using the same flag.
> Sure I will file JIRA ticket so that these options can be unified.
>
> On Mon, Jan 12, 2015 at 10:09 AM, Maxim Solodovnik <so...@gmail.com>
> wrote:
>
>> Can you please file JIRA ticket so this can be unified? sounds like two
>> options are used for the same.
>>
>> On Mon, Jan 12, 2015 at 10:31 AM, Abhishek Yadav <
>> abhishek.yadav@hiddenbrains.in> wrote:
>>
>>> Hello Bhushan,
>>>
>>> It is better if you use
>>> "addRoomWithModerationQuestionsAudioTypeAndHideOptions".
>>> Use hideScreenSharing options (true or false).
>>>
>>> It will show or hide the recording and screen sharing option. I used
>>> this option previously. I means that applet will never come into picture
>>> (if hideScreenSharing=true) as the button on top-right side is not visible.
>>> Both screensharing and recording will hide.
>>>
>>>
>>>
>>> On Sun, Jan 11, 2015 at 7:56 PM, Maxim Solodovnik <so...@gmail.com>
>>> wrote:
>>>
>>>> Quick investigation shows this option might be broken :(
>>>>
>>>> I'll try to perform additional check later
>>>>
>>>> On Sun, Jan 11, 2015 at 5:44 PM, Bhushan Patil <
>>>> thebhushanpatil@gmail.com> wrote:
>>>>
>>>>>  I tried that couple of times so I guess, only option left for me is
>>>>> to debug it. Anyways, what is expected behavior of
>>>>> "setUserObjectAndGenerateRoomHashByURLAndRecFlag" ? I mean, does it hide
>>>>> the 'record and share' button from room or it doesn't not show 'recording'
>>>>> option on applet ?
>>>>> As always, appreciates your help.
>>>>> Thanks.
>>>>> On Sunday 11 January 2015 10:59 AM, Maxim Solodovnik wrote:
>>>>>
>>>>> I don't know
>>>>> Maybe wrong params?
>>>>>
>>>>> WBR, Maxim
>>>>> (from mobile, sorry for the typos)
>>>>> On Jan 11, 2015 10:47 AM, "Bhushan Patil" <th...@gmail.com>
>>>>> wrote:
>>>>>
>>>>>>  Hello Maxim, I tried
>>>>>> "setUserObjectAndGenerateRoomHashByURLAndRecFlag" also. Still it allowing
>>>>>> me to do recording and strange thing is that 'allow_recording' column of
>>>>>> table 'room' of that room is set to 0. What could be problem ?
>>>>>> On Thursday 08 January 2015 08:16 PM, Maxim Solodovnik wrote:
>>>>>>
>>>>>> you need to use "setUserObjectAndGenerateRoomHashByURLAndRecFlag" on
>>>>>> the 4th step
>>>>>>
>>>>>> On Wed, Jan 7, 2015 at 5:07 PM, Bhushan Patil <
>>>>>> thebhushanpatil@gmail.com> wrote:
>>>>>>
>>>>>>>  Hello everyone, I am using Openmeetings 3.0.3 version. I am
>>>>>>> calling soap api as follows
>>>>>>>
>>>>>>> 1> Getting session
>>>>>>>     localhost:5080/openmeetings/services/UserService/getSession
>>>>>>> 2> Login
>>>>>>>
>>>>>>> localhost:5080/openmeetings/services/UserService/loginUser?SID=1c029de4ca577292045a89dc52832cbf&userpass=bhushan&username=bhushan
>>>>>>> 3> Creating room
>>>>>>>
>>>>>>> localhost:5080/openmeetings/services/openmeetings/services/RoomService/addRoomWithModerationAndRecordingFlags?SID=1c029de4ca577292045a89dc52832cbf&name=Shala_NoRec&roomtypes_id=1&comment=no_comment&numberOfPartizipants=10&ispublic=0&appointment=0&isDemoRoom=0&demoTime=0&isModeratedRoom=0&externalRoomType=dronna&allowUserQuestions=1&isAudioOnly=1&waitForRecording=1&allowRecording=0
>>>>>>>  4> Get hash URL for that room
>>>>>>>
>>>>>>> localhost:5080/openmeetings/services/UserService/setUserObjectAndGenerateRoomHashByURL?SID=1c029de4ca577292045a89dc52832cbf&username=bhushan&firstname=BhushanBhau&lastname=Patil&profilePictureUrl=abcg&externalUserId=1&email=
>>>>>>> none@none.com
>>>>>>> &externalUserType=dronna&room_id=11&becomeModeratorAsInt=1&showAudioVideoTestAsInt=0
>>>>>>>
>>>>>>> In 3rd step, I have set flag 'allowRecording' to false, ie
>>>>>>> allowRecording=0, Still it is allowing me to record the meeting.
>>>>>>> Is this bug or Am I doing something wrong ?
>>>>>>>
>>>>>>> Any help is appreciated.
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>  --
>>>>>> WBR
>>>>>> Maxim aka solomax
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>
>>>>
>>>> --
>>>> WBR
>>>> Maxim aka solomax
>>>>
>>>
>>>
>>
>>
>> --
>> WBR
>> Maxim aka solomax
>>
>
>


-- 
WBR
Maxim aka solomax

Re: Help : How to disable recording for room by soap api ?

Posted by Abhishek Yadav <ab...@hiddenbrains.in>.
Yes Maxim.

Two options are using the same flag.
Sure I will file JIRA ticket so that these options can be unified.

On Mon, Jan 12, 2015 at 10:09 AM, Maxim Solodovnik <so...@gmail.com>
wrote:

> Can you please file JIRA ticket so this can be unified? sounds like two
> options are used for the same.
>
> On Mon, Jan 12, 2015 at 10:31 AM, Abhishek Yadav <
> abhishek.yadav@hiddenbrains.in> wrote:
>
>> Hello Bhushan,
>>
>> It is better if you use
>> "addRoomWithModerationQuestionsAudioTypeAndHideOptions".
>> Use hideScreenSharing options (true or false).
>>
>> It will show or hide the recording and screen sharing option. I used this
>> option previously. I means that applet will never come into picture (if
>> hideScreenSharing=true) as the button on top-right side is not visible.
>> Both screensharing and recording will hide.
>>
>>
>>
>> On Sun, Jan 11, 2015 at 7:56 PM, Maxim Solodovnik <so...@gmail.com>
>> wrote:
>>
>>> Quick investigation shows this option might be broken :(
>>>
>>> I'll try to perform additional check later
>>>
>>> On Sun, Jan 11, 2015 at 5:44 PM, Bhushan Patil <
>>> thebhushanpatil@gmail.com> wrote:
>>>
>>>>  I tried that couple of times so I guess, only option left for me is to
>>>> debug it. Anyways, what is expected behavior of
>>>> "setUserObjectAndGenerateRoomHashByURLAndRecFlag" ? I mean, does it hide
>>>> the 'record and share' button from room or it doesn't not show 'recording'
>>>> option on applet ?
>>>> As always, appreciates your help.
>>>> Thanks.
>>>> On Sunday 11 January 2015 10:59 AM, Maxim Solodovnik wrote:
>>>>
>>>> I don't know
>>>> Maybe wrong params?
>>>>
>>>> WBR, Maxim
>>>> (from mobile, sorry for the typos)
>>>> On Jan 11, 2015 10:47 AM, "Bhushan Patil" <th...@gmail.com>
>>>> wrote:
>>>>
>>>>>  Hello Maxim, I tried
>>>>> "setUserObjectAndGenerateRoomHashByURLAndRecFlag" also. Still it allowing
>>>>> me to do recording and strange thing is that 'allow_recording' column of
>>>>> table 'room' of that room is set to 0. What could be problem ?
>>>>> On Thursday 08 January 2015 08:16 PM, Maxim Solodovnik wrote:
>>>>>
>>>>> you need to use "setUserObjectAndGenerateRoomHashByURLAndRecFlag" on
>>>>> the 4th step
>>>>>
>>>>> On Wed, Jan 7, 2015 at 5:07 PM, Bhushan Patil <
>>>>> thebhushanpatil@gmail.com> wrote:
>>>>>
>>>>>>  Hello everyone, I am using Openmeetings 3.0.3 version. I am calling
>>>>>> soap api as follows
>>>>>>
>>>>>> 1> Getting session
>>>>>>     localhost:5080/openmeetings/services/UserService/getSession
>>>>>> 2> Login
>>>>>>
>>>>>> localhost:5080/openmeetings/services/UserService/loginUser?SID=1c029de4ca577292045a89dc52832cbf&userpass=bhushan&username=bhushan
>>>>>> 3> Creating room
>>>>>>
>>>>>> localhost:5080/openmeetings/services/openmeetings/services/RoomService/addRoomWithModerationAndRecordingFlags?SID=1c029de4ca577292045a89dc52832cbf&name=Shala_NoRec&roomtypes_id=1&comment=no_comment&numberOfPartizipants=10&ispublic=0&appointment=0&isDemoRoom=0&demoTime=0&isModeratedRoom=0&externalRoomType=dronna&allowUserQuestions=1&isAudioOnly=1&waitForRecording=1&allowRecording=0
>>>>>>  4> Get hash URL for that room
>>>>>>
>>>>>> localhost:5080/openmeetings/services/UserService/setUserObjectAndGenerateRoomHashByURL?SID=1c029de4ca577292045a89dc52832cbf&username=bhushan&firstname=BhushanBhau&lastname=Patil&profilePictureUrl=abcg&externalUserId=1&email=
>>>>>> none@none.com
>>>>>> &externalUserType=dronna&room_id=11&becomeModeratorAsInt=1&showAudioVideoTestAsInt=0
>>>>>>
>>>>>> In 3rd step, I have set flag 'allowRecording' to false, ie
>>>>>> allowRecording=0, Still it is allowing me to record the meeting.
>>>>>> Is this bug or Am I doing something wrong ?
>>>>>>
>>>>>> Any help is appreciated.
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>>  --
>>>>> WBR
>>>>> Maxim aka solomax
>>>>>
>>>>>
>>>>>
>>>>
>>>
>>>
>>> --
>>> WBR
>>> Maxim aka solomax
>>>
>>
>>
>
>
> --
> WBR
> Maxim aka solomax
>

Re: Help : How to disable recording for room by soap api ?

Posted by Maxim Solodovnik <so...@gmail.com>.
Can you please file JIRA ticket so this can be unified? sounds like two
options are used for the same.

On Mon, Jan 12, 2015 at 10:31 AM, Abhishek Yadav <
abhishek.yadav@hiddenbrains.in> wrote:

> Hello Bhushan,
>
> It is better if you use
> "addRoomWithModerationQuestionsAudioTypeAndHideOptions".
> Use hideScreenSharing options (true or false).
>
> It will show or hide the recording and screen sharing option. I used this
> option previously. I means that applet will never come into picture (if
> hideScreenSharing=true) as the button on top-right side is not visible.
> Both screensharing and recording will hide.
>
>
>
> On Sun, Jan 11, 2015 at 7:56 PM, Maxim Solodovnik <so...@gmail.com>
> wrote:
>
>> Quick investigation shows this option might be broken :(
>>
>> I'll try to perform additional check later
>>
>> On Sun, Jan 11, 2015 at 5:44 PM, Bhushan Patil <thebhushanpatil@gmail.com
>> > wrote:
>>
>>>  I tried that couple of times so I guess, only option left for me is to
>>> debug it. Anyways, what is expected behavior of
>>> "setUserObjectAndGenerateRoomHashByURLAndRecFlag" ? I mean, does it hide
>>> the 'record and share' button from room or it doesn't not show 'recording'
>>> option on applet ?
>>> As always, appreciates your help.
>>> Thanks.
>>> On Sunday 11 January 2015 10:59 AM, Maxim Solodovnik wrote:
>>>
>>> I don't know
>>> Maybe wrong params?
>>>
>>> WBR, Maxim
>>> (from mobile, sorry for the typos)
>>> On Jan 11, 2015 10:47 AM, "Bhushan Patil" <th...@gmail.com>
>>> wrote:
>>>
>>>>  Hello Maxim, I tried "setUserObjectAndGenerateRoomHashByURLAndRecFlag"
>>>> also. Still it allowing me to do recording and strange thing is that
>>>> 'allow_recording' column of table 'room' of that room is set to 0. What
>>>> could be problem ?
>>>> On Thursday 08 January 2015 08:16 PM, Maxim Solodovnik wrote:
>>>>
>>>> you need to use "setUserObjectAndGenerateRoomHashByURLAndRecFlag" on
>>>> the 4th step
>>>>
>>>> On Wed, Jan 7, 2015 at 5:07 PM, Bhushan Patil <
>>>> thebhushanpatil@gmail.com> wrote:
>>>>
>>>>>  Hello everyone, I am using Openmeetings 3.0.3 version. I am calling
>>>>> soap api as follows
>>>>>
>>>>> 1> Getting session
>>>>>     localhost:5080/openmeetings/services/UserService/getSession
>>>>> 2> Login
>>>>>
>>>>> localhost:5080/openmeetings/services/UserService/loginUser?SID=1c029de4ca577292045a89dc52832cbf&userpass=bhushan&username=bhushan
>>>>> 3> Creating room
>>>>>
>>>>> localhost:5080/openmeetings/services/openmeetings/services/RoomService/addRoomWithModerationAndRecordingFlags?SID=1c029de4ca577292045a89dc52832cbf&name=Shala_NoRec&roomtypes_id=1&comment=no_comment&numberOfPartizipants=10&ispublic=0&appointment=0&isDemoRoom=0&demoTime=0&isModeratedRoom=0&externalRoomType=dronna&allowUserQuestions=1&isAudioOnly=1&waitForRecording=1&allowRecording=0
>>>>>  4> Get hash URL for that room
>>>>>
>>>>> localhost:5080/openmeetings/services/UserService/setUserObjectAndGenerateRoomHashByURL?SID=1c029de4ca577292045a89dc52832cbf&username=bhushan&firstname=BhushanBhau&lastname=Patil&profilePictureUrl=abcg&externalUserId=1&email=
>>>>> none@none.com
>>>>> &externalUserType=dronna&room_id=11&becomeModeratorAsInt=1&showAudioVideoTestAsInt=0
>>>>>
>>>>> In 3rd step, I have set flag 'allowRecording' to false, ie
>>>>> allowRecording=0, Still it is allowing me to record the meeting.
>>>>> Is this bug or Am I doing something wrong ?
>>>>>
>>>>> Any help is appreciated.
>>>>>
>>>>
>>>>
>>>>
>>>>  --
>>>> WBR
>>>> Maxim aka solomax
>>>>
>>>>
>>>>
>>>
>>
>>
>> --
>> WBR
>> Maxim aka solomax
>>
>
>


-- 
WBR
Maxim aka solomax

Re: Help : How to disable recording for room by soap api ?

Posted by Abhishek Yadav <ab...@hiddenbrains.in>.
Hello Bhushan,

It is better if you use
"addRoomWithModerationQuestionsAudioTypeAndHideOptions".
Use hideScreenSharing options (true or false).

It will show or hide the recording and screen sharing option. I used this
option previously. I means that applet will never come into picture (if
hideScreenSharing=true) as the button on top-right side is not visible.
Both screensharing and recording will hide.



On Sun, Jan 11, 2015 at 7:56 PM, Maxim Solodovnik <so...@gmail.com>
wrote:

> Quick investigation shows this option might be broken :(
>
> I'll try to perform additional check later
>
> On Sun, Jan 11, 2015 at 5:44 PM, Bhushan Patil <th...@gmail.com>
> wrote:
>
>>  I tried that couple of times so I guess, only option left for me is to
>> debug it. Anyways, what is expected behavior of
>> "setUserObjectAndGenerateRoomHashByURLAndRecFlag" ? I mean, does it hide
>> the 'record and share' button from room or it doesn't not show 'recording'
>> option on applet ?
>> As always, appreciates your help.
>> Thanks.
>> On Sunday 11 January 2015 10:59 AM, Maxim Solodovnik wrote:
>>
>> I don't know
>> Maybe wrong params?
>>
>> WBR, Maxim
>> (from mobile, sorry for the typos)
>> On Jan 11, 2015 10:47 AM, "Bhushan Patil" <th...@gmail.com>
>> wrote:
>>
>>>  Hello Maxim, I tried "setUserObjectAndGenerateRoomHashByURLAndRecFlag"
>>> also. Still it allowing me to do recording and strange thing is that
>>> 'allow_recording' column of table 'room' of that room is set to 0. What
>>> could be problem ?
>>> On Thursday 08 January 2015 08:16 PM, Maxim Solodovnik wrote:
>>>
>>> you need to use "setUserObjectAndGenerateRoomHashByURLAndRecFlag" on the
>>> 4th step
>>>
>>> On Wed, Jan 7, 2015 at 5:07 PM, Bhushan Patil <thebhushanpatil@gmail.com
>>> > wrote:
>>>
>>>>  Hello everyone, I am using Openmeetings 3.0.3 version. I am calling
>>>> soap api as follows
>>>>
>>>> 1> Getting session
>>>>     localhost:5080/openmeetings/services/UserService/getSession
>>>> 2> Login
>>>>
>>>> localhost:5080/openmeetings/services/UserService/loginUser?SID=1c029de4ca577292045a89dc52832cbf&userpass=bhushan&username=bhushan
>>>> 3> Creating room
>>>>
>>>> localhost:5080/openmeetings/services/openmeetings/services/RoomService/addRoomWithModerationAndRecordingFlags?SID=1c029de4ca577292045a89dc52832cbf&name=Shala_NoRec&roomtypes_id=1&comment=no_comment&numberOfPartizipants=10&ispublic=0&appointment=0&isDemoRoom=0&demoTime=0&isModeratedRoom=0&externalRoomType=dronna&allowUserQuestions=1&isAudioOnly=1&waitForRecording=1&allowRecording=0
>>>>  4> Get hash URL for that room
>>>>
>>>> localhost:5080/openmeetings/services/UserService/setUserObjectAndGenerateRoomHashByURL?SID=1c029de4ca577292045a89dc52832cbf&username=bhushan&firstname=BhushanBhau&lastname=Patil&profilePictureUrl=abcg&externalUserId=1&email=
>>>> none@none.com
>>>> &externalUserType=dronna&room_id=11&becomeModeratorAsInt=1&showAudioVideoTestAsInt=0
>>>>
>>>> In 3rd step, I have set flag 'allowRecording' to false, ie
>>>> allowRecording=0, Still it is allowing me to record the meeting.
>>>> Is this bug or Am I doing something wrong ?
>>>>
>>>> Any help is appreciated.
>>>>
>>>
>>>
>>>
>>>  --
>>> WBR
>>> Maxim aka solomax
>>>
>>>
>>>
>>
>
>
> --
> WBR
> Maxim aka solomax
>

Re: Help : How to disable recording for room by soap api ?

Posted by Maxim Solodovnik <so...@gmail.com>.
Quick investigation shows this option might be broken :(

I'll try to perform additional check later

On Sun, Jan 11, 2015 at 5:44 PM, Bhushan Patil <th...@gmail.com>
wrote:

>  I tried that couple of times so I guess, only option left for me is to
> debug it. Anyways, what is expected behavior of
> "setUserObjectAndGenerateRoomHashByURLAndRecFlag" ? I mean, does it hide
> the 'record and share' button from room or it doesn't not show 'recording'
> option on applet ?
> As always, appreciates your help.
> Thanks.
> On Sunday 11 January 2015 10:59 AM, Maxim Solodovnik wrote:
>
> I don't know
> Maybe wrong params?
>
> WBR, Maxim
> (from mobile, sorry for the typos)
> On Jan 11, 2015 10:47 AM, "Bhushan Patil" <th...@gmail.com>
> wrote:
>
>>  Hello Maxim, I tried "setUserObjectAndGenerateRoomHashByURLAndRecFlag"
>> also. Still it allowing me to do recording and strange thing is that
>> 'allow_recording' column of table 'room' of that room is set to 0. What
>> could be problem ?
>> On Thursday 08 January 2015 08:16 PM, Maxim Solodovnik wrote:
>>
>> you need to use "setUserObjectAndGenerateRoomHashByURLAndRecFlag" on the
>> 4th step
>>
>> On Wed, Jan 7, 2015 at 5:07 PM, Bhushan Patil <th...@gmail.com>
>> wrote:
>>
>>>  Hello everyone, I am using Openmeetings 3.0.3 version. I am calling
>>> soap api as follows
>>>
>>> 1> Getting session
>>>     localhost:5080/openmeetings/services/UserService/getSession
>>> 2> Login
>>>
>>> localhost:5080/openmeetings/services/UserService/loginUser?SID=1c029de4ca577292045a89dc52832cbf&userpass=bhushan&username=bhushan
>>> 3> Creating room
>>>
>>> localhost:5080/openmeetings/services/openmeetings/services/RoomService/addRoomWithModerationAndRecordingFlags?SID=1c029de4ca577292045a89dc52832cbf&name=Shala_NoRec&roomtypes_id=1&comment=no_comment&numberOfPartizipants=10&ispublic=0&appointment=0&isDemoRoom=0&demoTime=0&isModeratedRoom=0&externalRoomType=dronna&allowUserQuestions=1&isAudioOnly=1&waitForRecording=1&allowRecording=0
>>>  4> Get hash URL for that room
>>>
>>> localhost:5080/openmeetings/services/UserService/setUserObjectAndGenerateRoomHashByURL?SID=1c029de4ca577292045a89dc52832cbf&username=bhushan&firstname=BhushanBhau&lastname=Patil&profilePictureUrl=abcg&externalUserId=1&email=
>>> none@none.com
>>> &externalUserType=dronna&room_id=11&becomeModeratorAsInt=1&showAudioVideoTestAsInt=0
>>>
>>> In 3rd step, I have set flag 'allowRecording' to false, ie
>>> allowRecording=0, Still it is allowing me to record the meeting.
>>> Is this bug or Am I doing something wrong ?
>>>
>>> Any help is appreciated.
>>>
>>
>>
>>
>>  --
>> WBR
>> Maxim aka solomax
>>
>>
>>
>


-- 
WBR
Maxim aka solomax

Re: Help : How to disable recording for room by soap api ?

Posted by Bhushan Patil <th...@gmail.com>.
I tried that couple of times so I guess, only option left for me is to 
debug it. Anyways, what is expected behavior of 
"setUserObjectAndGenerateRoomHashByURLAndRecFlag" ? I mean, does it hide 
the 'record and share' button from room or it doesn't not show 
'recording' option on applet ?
As always, appreciates your help.
Thanks.
On Sunday 11 January 2015 10:59 AM, Maxim Solodovnik wrote:
>
> I don't know
> Maybe wrong params?
>
> WBR, Maxim
> (from mobile, sorry for the typos)
>
> On Jan 11, 2015 10:47 AM, "Bhushan Patil" <thebhushanpatil@gmail.com 
> <ma...@gmail.com>> wrote:
>
>     Hello Maxim, I tried
>     "setUserObjectAndGenerateRoomHashByURLAndRecFlag" also. Still it
>     allowing me to do recording and strange thing is that
>     'allow_recording' column of table 'room' of that room is set to 0.
>     What could be problem ?
>     On Thursday 08 January 2015 08:16 PM, Maxim Solodovnik wrote:
>>     you need to use "setUserObjectAndGenerateRoomHashByURLAndRecFlag"
>>     on the 4th step
>>
>>     On Wed, Jan 7, 2015 at 5:07 PM, Bhushan Patil
>>     <thebhushanpatil@gmail.com <ma...@gmail.com>> wrote:
>>
>>         Hello everyone, I am using Openmeetings 3.0.3 version. I am
>>         calling soap api as follows
>>
>>         1> Getting session
>>         localhost:5080/openmeetings/services/UserService/getSession
>>         2> Login
>>         localhost:5080/openmeetings/services/UserService/loginUser?SID=1c029de4ca577292045a89dc52832cbf&userpass=bhushan&username=bhushan
>>         3> Creating room
>>         localhost:5080/openmeetings/services/openmeetings/services/RoomService/addRoomWithModerationAndRecordingFlags?SID=1c029de4ca577292045a89dc52832cbf&name=Shala_NoRec&roomtypes_id=1&comment=no_comment&numberOfPartizipants=10&ispublic=0&appointment=0&isDemoRoom=0&demoTime=0&isModeratedRoom=0&externalRoomType=dronna&allowUserQuestions=1&isAudioOnly=1&waitForRecording=1&allowRecording=0
>>         4> Get hash URL for that room
>>         localhost:5080/openmeetings/services/UserService/setUserObjectAndGenerateRoomHashByURL?SID=1c029de4ca577292045a89dc52832cbf&username=bhushan&firstname=BhushanBhau&lastname=Patil&profilePictureUrl=abcg&externalUserId=1&email=none@none.com
>>         <ma...@none.com>&externalUserType=dronna&room_id=11&becomeModeratorAsInt=1&showAudioVideoTestAsInt=0
>>
>>         In 3rd step, I have set flag 'allowRecording' to false, ie
>>         allowRecording=0, Still it is allowing me to record the meeting.
>>         Is this bug or Am I doing something wrong ?
>>
>>         Any help is appreciated.
>>
>>
>>
>>
>>     -- 
>>     WBR
>>     Maxim aka solomax
>


Re: Help : How to disable recording for room by soap api ?

Posted by Maxim Solodovnik <so...@gmail.com>.
I don't know
Maybe wrong params?

WBR, Maxim
(from mobile, sorry for the typos)
On Jan 11, 2015 10:47 AM, "Bhushan Patil" <th...@gmail.com> wrote:

>  Hello Maxim, I tried "setUserObjectAndGenerateRoomHashByURLAndRecFlag"
> also. Still it allowing me to do recording and strange thing is that
> 'allow_recording' column of table 'room' of that room is set to 0. What
> could be problem ?
> On Thursday 08 January 2015 08:16 PM, Maxim Solodovnik wrote:
>
> you need to use "setUserObjectAndGenerateRoomHashByURLAndRecFlag" on the
> 4th step
>
> On Wed, Jan 7, 2015 at 5:07 PM, Bhushan Patil <th...@gmail.com>
> wrote:
>
>>  Hello everyone, I am using Openmeetings 3.0.3 version. I am calling
>> soap api as follows
>>
>> 1> Getting session
>>     localhost:5080/openmeetings/services/UserService/getSession
>> 2> Login
>>
>> localhost:5080/openmeetings/services/UserService/loginUser?SID=1c029de4ca577292045a89dc52832cbf&userpass=bhushan&username=bhushan
>> 3> Creating room
>>
>> localhost:5080/openmeetings/services/openmeetings/services/RoomService/addRoomWithModerationAndRecordingFlags?SID=1c029de4ca577292045a89dc52832cbf&name=Shala_NoRec&roomtypes_id=1&comment=no_comment&numberOfPartizipants=10&ispublic=0&appointment=0&isDemoRoom=0&demoTime=0&isModeratedRoom=0&externalRoomType=dronna&allowUserQuestions=1&isAudioOnly=1&waitForRecording=1&allowRecording=0
>>  4> Get hash URL for that room
>>
>> localhost:5080/openmeetings/services/UserService/setUserObjectAndGenerateRoomHashByURL?SID=1c029de4ca577292045a89dc52832cbf&username=bhushan&firstname=BhushanBhau&lastname=Patil&profilePictureUrl=abcg&externalUserId=1&email=
>> none@none.com
>> &externalUserType=dronna&room_id=11&becomeModeratorAsInt=1&showAudioVideoTestAsInt=0
>>
>> In 3rd step, I have set flag 'allowRecording' to false, ie
>> allowRecording=0, Still it is allowing me to record the meeting.
>> Is this bug or Am I doing something wrong ?
>>
>> Any help is appreciated.
>>
>
>
>
>  --
> WBR
> Maxim aka solomax
>
>
>

Re: Help : How to disable recording for room by soap api ?

Posted by Bhushan Patil <th...@gmail.com>.
Hello Maxim, I tried "setUserObjectAndGenerateRoomHashByURLAndRecFlag" 
also. Still it allowing me to do recording and strange thing is that 
'allow_recording' column of table 'room' of that room is set to 0. What 
could be problem ?
On Thursday 08 January 2015 08:16 PM, Maxim Solodovnik wrote:
> you need to use "setUserObjectAndGenerateRoomHashByURLAndRecFlag" on 
> the 4th step
>
> On Wed, Jan 7, 2015 at 5:07 PM, Bhushan Patil 
> <thebhushanpatil@gmail.com <ma...@gmail.com>> wrote:
>
>     Hello everyone, I am using Openmeetings 3.0.3 version. I am
>     calling soap api as follows
>
>     1> Getting session
>     localhost:5080/openmeetings/services/UserService/getSession
>     2> Login
>     localhost:5080/openmeetings/services/UserService/loginUser?SID=1c029de4ca577292045a89dc52832cbf&userpass=bhushan&username=bhushan
>     3> Creating room
>     localhost:5080/openmeetings/services/openmeetings/services/RoomService/addRoomWithModerationAndRecordingFlags?SID=1c029de4ca577292045a89dc52832cbf&name=Shala_NoRec&roomtypes_id=1&comment=no_comment&numberOfPartizipants=10&ispublic=0&appointment=0&isDemoRoom=0&demoTime=0&isModeratedRoom=0&externalRoomType=dronna&allowUserQuestions=1&isAudioOnly=1&waitForRecording=1&allowRecording=0
>     4> Get hash URL for that room
>     localhost:5080/openmeetings/services/UserService/setUserObjectAndGenerateRoomHashByURL?SID=1c029de4ca577292045a89dc52832cbf&username=bhushan&firstname=BhushanBhau&lastname=Patil&profilePictureUrl=abcg&externalUserId=1&email=none@none.com
>     <ma...@none.com>&externalUserType=dronna&room_id=11&becomeModeratorAsInt=1&showAudioVideoTestAsInt=0
>
>     In 3rd step, I have set flag 'allowRecording' to false, ie
>     allowRecording=0, Still it is allowing me to record the meeting.
>     Is this bug or Am I doing something wrong ?
>
>     Any help is appreciated.
>
>
>
>
> -- 
> WBR
> Maxim aka solomax


Re: Help : How to disable recording for room by soap api ?

Posted by Maxim Solodovnik <so...@gmail.com>.
you need to use "setUserObjectAndGenerateRoomHashByURLAndRecFlag" on the
4th step

On Wed, Jan 7, 2015 at 5:07 PM, Bhushan Patil <th...@gmail.com>
wrote:

> Hello everyone, I am using Openmeetings 3.0.3 version. I am calling soap
> api as follows
>
> 1> Getting session
>     localhost:5080/openmeetings/services/UserService/getSession
> 2> Login
>
> localhost:5080/openmeetings/services/UserService/loginUser?SID=1c029de4ca577292045a89dc52832cbf&userpass=bhushan&username=bhushan
> 3> Creating room
>
> localhost:5080/openmeetings/services/openmeetings/services/RoomService/addRoomWithModerationAndRecordingFlags?SID=1c029de4ca577292045a89dc52832cbf&name=Shala_NoRec&roomtypes_id=1&comment=no_comment&numberOfPartizipants=10&ispublic=0&appointment=0&isDemoRoom=0&demoTime=0&isModeratedRoom=0&externalRoomType=dronna&allowUserQuestions=1&isAudioOnly=1&waitForRecording=1&allowRecording=0
> 4> Get hash URL for that room
>
> localhost:5080/openmeetings/services/UserService/setUserObjectAndGenerateRoomHashByURL?SID=1c029de4ca577292045a89dc52832cbf&username=bhushan&firstname=BhushanBhau&lastname=Patil&profilePictureUrl=abcg&externalUserId=1&email=
> none@none.com
> &externalUserType=dronna&room_id=11&becomeModeratorAsInt=1&showAudioVideoTestAsInt=0
>
> In 3rd step, I have set flag 'allowRecording' to false, ie
> allowRecording=0, Still it is allowing me to record the meeting.
> Is this bug or Am I doing something wrong ?
>
> Any help is appreciated.
>



-- 
WBR
Maxim aka solomax