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.