IOMOPERATE Procedure

Example 5: CONNECT Example with a Server Name

CONNECT Example with a Server Name

The following example shows how you can use a server name to identify the server to connect to. An explicit server name is required when there are multiple servers listening on the same spawner port:
PROC IOMOPERATE;
    CONNECT host='itsvista16234'
            port=8591
            user='sasiom1'
            pass='mypassword'
            servertype=STOREDPROCESS
            iomoptions='SERVERNAME=SASApp - Stored Process Server';
    LIST COMMANDS;
QUIT;