Problem Note 11433: SAS/CONNECT Spawner & Client session "hang" after executing erroneous
code
The SAS/Connect spawner may hang while occupying it's port (and not
responding to any requests) when a client executes a LIBNAME statement
with SLIBREF while pointing to the spawner without a prior SIGNON. This
happens when spawner port name is used.
Following is the example of the erroneous code
%let mvs=test.mvs.com;
options comamid=tcp remote=mvs;
libname abc slibref=abc server=mvs.spawner;
To get the spawner working again and to free the spawner's port, the
local SAS client session or the spawner itself must be restarted.
The circumvention is to use the spawner's port number instead of the
port name. Using the following example the spawner will not hang and the
client program will end with error - as expected.
%let mvs=test.mvs.com 7130;
options comamid=tcp remote=mvs;
signon mvs user=_prompt_ pw=_prompt_;
signoff;
libname abc slibref=abc server=mvs;
A Technical Support hot fix for Release 8.2 (TS2M0) for this
issue is available at:
http://www.sas.com/techsup/download/hotfix/82_sbcs_prod_list.html#011433
For customers running SAS with Asian Language Support (DBCS), this
hot fix should be downloaded from:
http://www.sas.com/techsup/download/hotfix/82_dbcs_prod_list.html#011433
A fix for SAS 9.1.3 (9.1 TS1M3) for this issue is available at:
http://www.sas.com/techsup/download/hotfix/e9_sbcs_prod_list.html#011433
For customers running SAS with Asian Language Support (DBCS), this
fix should be downloaded from:
http://www.sas.com/techsup/download/hotfix/e9_dbcs_prod_list.html#011433
Operating System and Release Information
| SAS System | SAS/CONNECT | z/OS | 8.2 TS2M0 | 9.1 TS1M3 SP1 |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
| Type: | Problem Note |
| Priority: | medium |
| Topic: | Software Components ==> Connect Spawner
|
| Date Modified: | 2004-12-20 14:03:17 |
| Date Created: | 2003-12-05 11:50:27 |