Hi i work on java project with spring framework and implement client-server side with Spring RMI is there anyway to limit concurrent client call to server? i try google around and found that spring provide Security container package that can limit number of concurrent per authenticated user which i don't thik it is what i look for
here is server-side config provided in spring's website i wonder if i could config it to limit concurrent connection ?
<bean id="checkingAccountService"
class="org.springframework.jms.remoting.JmsInvokerServiceExporter">
<property name="serviceInterface" value="com.foo.CheckingAccountService"/>
<property name="service">
<bean class="com.foo.SimpleCheckingAccountService"/>
</property>
</bean>
thx for your reply