LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (May 2001, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 3 May 2001 16:19:17 -0500
Reply-To:     Rush Daugette <rush_daugette@MSN.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Rush Daugette <rush_daugette@MSN.COM>
Subject:      Re: SAS/Connect

Darran, Here's what you would submit to connect using SAS/Connect:

/*** SPECIFY IP ADDRESS OF SAS SERVER ***/ %let rsession=130.140.94.55; /* You need to know this or preferably the alias for this */

/*** SPECIFY TCP FOR COMMUNICATION ACCESS METHOD ***/ options comamid=tcp; /* this is for TCIP com access method, what you usually use */ options remote=rsession; /* this is you session name */

/*** POINT TO SCRIPT FILE ON THE CLIENT MACHINE ***/ filename rlink "C:\Program Files\SAS Institute\SAS\V8\CONNECT\SASLINK\tcpwin.scr"; /* this script doesn't need any modifications at all */

/*** ESTABLISH A REMOTE CONNECTION ***/ signon;

If you're running SAS/Share, you need to do a few more things but this should get you connected.

Rush

"Darran Zenger" <DZENGER@KLUNE.COM> wrote in message news:F013D2C7D7E5D411959B00E018033AF824D068@kisfex.klune.com... > Here we go again...I know I've pulled some questions on SAS/Connect before > but now I need the "meat" of it! I've got 8.1 on Windows and want to be able > to connect to SAS on a server (also 8.1 on Windows 2K Server). But there > are these input boxes, like Script File name, Session Name, communication > access method ID, etc. Can someone please explain what each is for so I can > grasp a better understanding on this? > > Thanks in advance, > Darran > > Darran Zenger > The SAS System > Programming > Klune Industries, INC > Spanish Fork, UT


Back to: Top of message | Previous page | Main SAS-L page