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