![]() Chapter Contents |
![]() Previous |
![]() Next |
| _createRemoteInstance |
| Syntax | |
| Example |
Syntax |
|
CALL SEND(robjInst, '_createRemoteInstance',
remote_name, class_name, rc); |
| Where... | Is type... | And represents... |
|---|---|---|
| remote_name | C | remote destination |
| class_name | C | fully-qualified class name |
| rc | N | return code |
"remote//oak". | Example |
This example creates a remote instance of the class
sashelp.fsp.object by first signing on to the remote host OAK and then issuing the _createRemoteInstance method.
filename rlink 'tcpunix.scr';
signon oak;
robj = loadclass('sashelp.connect.robject.class');
robjInst = instance(robj);
call send(robjInst,
"_createRemoteInstance",
"remote//oak",
"sashelp.fsp.object",
rc);
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.