would this be possible? This should return the number of users currently connected…
is per server usefull? whould per solution be more usefull?
would both be possible?
No, actually what I want is this: Servoy has a concurrent user licensing model. For our solutions we will be doing the same. But what if our customer calls Servoy and orders a few more concurrent users?
So I guess what I really need is per solution!
Thank you very much!
Patrick
Added to planning for Servoy 2.5, in mean time you could build something similar by requesting data from your web server and returning if the client is allowed to start.
like: plugins.http.getPageData(“http://mywebserver.com/mayservoyclientstart?company=xxx&solution=yyy”) and keep client count on server.
What I do now is something like my own “session” table. When you log in, a record is written, when you log out, this record is “cancelled”.
But of course, it’d be much easier if I could ask the server…