Skip to main content
Known Participant
April 14, 2010
Question

Limits per application

  • April 14, 2010
  • 1 reply
  • 679 views

Hi,

Can anyone tell me whether it's possible to limit the amount of clients per application or just per server/virtualhost? There's a setting to limit bandwidth per client for applications but not maximum amount of clients as fas as I can tell.

    This topic has been closed for replies.

    1 reply

    Participating Frequently
    April 14, 2010

    Yes there is no setting but you can do it with simple server-side logic. Just keep track of number of clients coming in and reject once it goes above your limit. Now if you do not want it to reach application at all, you can code it in access adaptor.

    teel_Author
    Known Participant
    April 14, 2010

    Thanks. I forgot to mention that I'm running streaming edition, so I can't run my own code on the server

    Participating Frequently
    April 14, 2010

    Oops, then i suppose you won't be able to do that at FMS end. But if you can probably achieve external way - just thinking on the fly may be you can write web service which your client can connect, which will keep track of number of clients connected, only when you get approval from web service you can proceed to connect to FMS - i really do not know whether its best or workable solution but just it came in my mind.