IOMOPERATE Procedure

Example 8: CONNECT Example Using Kerberos

CONNECT Example Using Kerberos

The following example demonstrates how you can use Kerberos to make a secure connection.
PROC IOMOPERATE;
    CONNECT host='myhost.example.com'
            port=4001;     
QUIT;
Note: host - metadata host name, port - workspace port
/* Using security package and securitypackagelist for kerberos */
PROC IOMOPERATE;
    CONNECT host='myhost.example.com'
            port=4001
            IOMOPTS='SECURITYPACKAGE=Negotiate,SECURITYPACKAGELIST=Kerberos';
QUIT;