I have a CORBA Server developed using Java (Oracle/Sun)... I do not know why, but the server is limiting the number of connection to 240. The application itself does not have any limitation... so i was wondering if the ORB itself can have some kind of properties to manage/limit this.
Properties orbProps = new Properties();
orbProps.put("org.omg.CORBA.ORBServerId", Integer.toString(id));
orbProps.put("com.sun.CORBA.POA.ORBPersistentServerPort", Integer.toString(port));
orb = ORB.init(new String[]{}, orbProps);
Any help would be welcome :-) Thanks.
If you are using Glassfish you can adjust the pool of the ORB. There is fairly extensive documentation on this in the Glassfish manual.
https://docs.oracle.com/cd/E18930_01/html/821-2431/abegt.html