|
|
The SWSAPDIS FunctionRelated Topics
The REXX-language SWSAPDIS built-in function can be used to drop APPC connections between the Shadow OS/390 Web Server for IMS and IMS v4.1 and above. A call to this function disconnects IMS. Upon return from the call, the following Rexx variables are used:
SWSAPDIS SyntaxThe general form for a REXX-language invocation of SWSAPDIS is:
rc = SWSAPDIS("Connection Type")
SWSAPDIS Example /*-------------------------------------------------------------*/
/* disconnect the ims transaction */
/*-------------------------------------------------------------*/
rc = swsapdis('ims')
end
or /*-------------------------------------------------------------*/
/* disconnect the ims transaction */
/*-------------------------------------------------------------*/
rc = swsapdis('imsconv')
end
|