print

Commands

NOMAD XOP adds the CORBA command line operation to Igor that is used to launch the CORBA server and open the communication with the NameService.

CORBA [/H/Q IP=hostName]

The CORBA operation starts the omniORB CORBA server and declare it in the NameService.

Flags
/HSpecifies that the help is needed.
/QSuppresses printing information in the History area.
Keywords
IP=hostNamehostName is the IP address of the NameService (string).
Example
This command opens the TCP/IP connection with a CORBA server:


Function InitCorbaServer()

String/G gNSaddress = "172.168.1.23"

/ Set Igor for CORBA operations.
CORBA /Q IP= gNSaddress

// Set the variables to be requested
...
End