Hello,
Is there a recommendation how to properly handle TROSuperTCPChannel.OnConnected event and call server methods from within the event. I found that calling server side will make application stop.
Thank you
Hello,
Is there a recommendation how to properly handle TROSuperTCPChannel.OnConnected event and call server methods from within the event. I found that calling server side will make application stop.
Thank you
Hello,
Please set TROSuperTCPChannel.SynchronizeEvents=True
When I set this I get the following exception …
ROExcpetion Not enough threads available for request
Hello,
Please increase ROServer.ThreadPool.MaxThreads value.
What is the suggested value?
Hello,
If you want to service 1000 requests at once, your MaxThread value should be at least 1000. Maximum MaxTreads value depends on time of requests service and number of request per second.
When MaxTreads = number of request per second * average time of requests service, your thread queues will be empty and you’ll get no delay in requests processing.