WEB CLOSE
| COBOL | Java |
| EXEC CICS WEB CLOSE | ibmCics.webClose |
Syntax
ibmCics.webClose(new WebCloseOptions() .sessToken(<SessToken>) [.noHandle(true)] );
Parameter(s)
<SessToken>
The session token of the connection to close.
<noHandle>
Optional boolean. If set to true, exceptions created by this command will be ignored.
Example(s)
| COBOL | Java |
EXEC CICS
WEB CLOSE
SESSTOKEN(WS-SESSTOKEN)
END-EXEC.
|
ibmCics.webClose(new WebCloseOptions()
.sessToken(locDef.ws_Sesstoken)
);
|
