AMT Help Files
Home Development Command Translation CICS Commands WEB OPEN

WEB OPEN

COBOL Java
EXEC CICS WEB OPEN ibmCics.webOpen

Syntax

ibmCics.webOpen(new WebOpenOptions()
  .uriMap(<UriMap>)
  .sessToken(<SessToken>)
  [.httpVNum(<HttpVNum>)]
  [.httpRNum(<HttpRNum>)]
  [.noHandle(true)]
);

Parameter(s)

<UriMap>
Name of the URIMAP to be used.
<SessToken>
Data area to store the session token.
<HttpVNum>
Optional, data area to store the version number for the HTTP version of the server.
<HttpRNum>
Optional, data area to store the release number for the HTTP version of the server.
<noHandle>
Optional boolean. If set to true, exceptions created by this command will be ignored.

Example(s)

COBOL Java
EXEC CICS
    WEB OPEN
        URIMAP('MYURIMAP')
        SESSTOKEN(WS-SESSTOKEN)
END-EXEC.
                
ibmCics.webOpen(new WebOpenOptions()
  .uriMap("MYURIMAP")
  .sessToken(locDef.ws_Sesstoken)
);
                

Contents

 Go to top