The configuration parameters in the CORBA section of the file let you configure the IBM Java Object Request Broker (ORB). For more information about the parameters in this section, see the information on how to configure the ORB in the System Administration Guide.
Specifies the port number where the ORB server (which resides within InterChange Server) listens for incoming requests from ORB clients. By default, the ORB dynamically assigns this port number. However, in the following cases, you must set a fixed OAport number:
This parameter has the following format:
OAport=portNumber
where portNumber is the fixed port on which the ORB server listens for incoming requests.
ProductDir/ICS_instanceInterchangeServer.ior
where ICS_instance is the name of the InterChange Server instance.
For example, if you assign a fixed port number of 15786 to OAport and the name of the ICS instance is MyICS, InterChange Server creates the following .ior file, which contains the fixed port number of 15786:
MyICSInterchangeServer.ior
Specifies the maximum number of threads that the ORB server can create. The thread-pool model of the IBM Java ORB handles each incoming request with a separate thread. If all the pool's threads are in use when a new request comes in, the ORB creates a new thread and adds it to the pool. When the number of threads reaches the specified maximum (indicated by OAthreadMax), the new request is blocked until a thread that is currently in use has been released back into the pool.
Notes:
The default value for this parameter is zero (0), which indicates that there is no restriction on the number of threads to create.
Specifies the maximum idle time in seconds for a thread that the ORB server creates. A thread which is idle for longer than the value specified is destroyed.
OAthreadMaxIdle = 5
Specifies the IP address or host name of the machine on which the ORB server is running. The ORB server uses this local host name to place the ORB server's host name into the Interoperable Object Reference (.ior) file of a remote object.
The default value for this parameter is the name of the local host machine.