Hello Sangeeta,

sorry for the very slow answer :(((

On Wed, 2 Mar 2022 at 14:57, Sangeeta Verma <soadevelop...@yahoo.com> wrote:
>
> Hi Maxim thank you so much for your response. I was waiting for my manager to 
> answer some questions.
> Here below I copied with some editing .. so it is simple. Please let me know 
> if any more questions...
>
> , we need to know if they have any number on how many clients they have. If 
> you go to Apache Spark we get some ideas based on usage statistics. Yes it is 
> not accurate but we know to some extent knowing who major clients are. So we 
> can ask them if they know any of the public clients that they are aware of. 
> See if this makes sense.
> ---

As far as I understand you need stats per one particular OM DB

>
> Sangeeta question:
> - total number of registered users. --- ANSW : Would be good to know

This would be amount of non-deleted users with type other than CONTACT
something like:

SELECT COUNT(*)
FROM om_user u
WHERE u.deleted = false AND u.type <> 'CONTACT'

Also web-service can be used:
https://openmeetings.apache.org/openmeetings-webservice/apidocs/org/apache/openmeetings/webservice/UserWebService.html#get(java.lang.String)

> - the number of users how online now -- no

this one is available in OM UI only
Admin->Connections

> - the number of users in particular room -- no

both available in UI and web-service
https://openmeetings.apache.org/openmeetings-webservice/apidocs/org/apache/openmeetings/webservice/RoomWebService.html#users(java.lang.String,java.lang.Long)

>
>
> Thnx
> Sangeeta
>
>
>
>
> On Monday, February 28, 2022, 06:59:55 PM PST, Maxim Solodovnik 
> <solomax...@gmail.com> wrote:
>
>
>
>
> from mobile (sorry for typos ;)
>
>
> On Sun, Feb 27, 2022, 06:22 Sangeeta Verma <soadevelop...@yahoo.com> wrote:
>
> Hi Max,
> I am trying to create a draggable dialog box with a textbox on it. Knowing 
> there exists a button what are the steps to create a movable dialog box? I 
> tried .html.Panel class with html. But I can't load this using 
> setResponsePage(class, pageparameters)
> Thought of asking you directly.
>
>
> Well
> In OM code we are using SPA approach
> So we are using AJAX updates
>
> For movable dialog box you need jquery-ui
> You can find lots of examples at
>
> http://www.7thweb.net/wicket-jquery-ui/
>
> Sorry if I spammed you. Another thing is to know what is the usage or clients 
> number, total number of clients using openmeetings.. any approximate idea. 
> How to present some numbers to clients?
>
>
> No sure I understood the question :(
> Do you need
> - total number of registered users
> - the number of users how online now
> - the number of users in particular room
> ?
>
>
> Thank you Max. Hope you are doing great otherwise.
>
>
> Regards,
> S



-- 
Best regards,
Maxim

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@community.apache.org
For additional commands, e-mail: dev-h...@community.apache.org

Reply via email to