CREATE URIMAP

Define a URIMAP resource in the local CICS region.

CREATE URIMAP

Read syntax diagramSkip visual syntax diagramCREATE URIMAP( data-value) ATTRIBUTES( data-value)ATTRLEN( data-value)LOGNOLOGLOGMESSAGE( cvda)
CREATE URIMAP attribute values
Read syntax diagramSkip visual syntax diagramDESCRIPTION( char58)STATUS(ENABLED)STATUS(DISABLED)HOST( char116)PORT( port)PATH( char255)SCHEME(HTTP)SCHEME(HTTPS)USAGE(SERVER)SERVER attributesUSAGE(CLIENT)CLIENT attributesUSAGE(PIPELINE)PIPELINE attributesUSAGE(ATOM)ATOM attributesUSAGE(JVMSERVER)JVMSERVER attributes
SERVER attributes
Read syntax diagramSkip visual syntax diagramTCPIPSERVICE( char8)MEDIATYPE( char40)CHARACTERSET( char40)HOSTCODEPAGE( char10)TEMPLATENAME( char48)HFSFILE( char255)ANALYZER(YES)ANALYZER(NO)CONVERTER( char8)TRANSACTION( char4)PROGRAM( char8)USERID( char8)REDIRECTTYPE(NONE)REDIRECTTYPE(TEMPORARY)REDIRECTTYPE(PERMANENT)LOCATION( char255)
CLIENT attributes
Read syntax diagramSkip visual syntax diagramCERTIFICATE( char32)CIPHERS( char48)AUTHENTICATE(NO)AUTHENTICATE(BASIC)SOCKETCLOSE(0)SOCKETCLOSE( hhmmss)
PIPELINE attributes
Read syntax diagramSkip visual syntax diagramPIPELINE( char8)WEBSERVICE( char32)TCPIPSERVICE( char8)TRANSACTION( char4)USERID( char8)REDIRECTTYPE(NONE)REDIRECTTYPE(TEMPORARY)REDIRECTTYPE(PERMANENT)LOCATION( char255)
ATOM attributes
Read syntax diagramSkip visual syntax diagramATOMSERVICE( char8)TCPIPSERVICE( char8)TRANSACTION( char4)USERID( char8)REDIRECTTYPE(NONE)REDIRECTTYPE(TEMPORARY)REDIRECTTYPE(PERMANENT)LOCATION( char255)
JVMSERVER attributes
Read syntax diagramSkip visual syntax diagramHOST( hostname)HOST(*)PORT(NO)PORT( port)TRANSACTION( name)USERID( id)

Conditions: INVREQ, LENGERR, NOTAUTH

This command is threadsafe.

Note to COBOL programmers: In the syntax above, you must use ATTRIBUTES(data-area) instead of ATTRIBUTES(data-value).

Description

The CREATE URIMAP command builds a URIMAP resource definition. It does not use a resource definition stored in the CSD. If a URIMAP definition already exists with the name you that specify in the local CICS region, the command fails unless the existing URIMAP definition is disabled, in which case the new definition replaces the old one. If no URIMAP definition with the name specified exists, the new definition is added.

A sync point is implicit in CREATE URIMAP processing, except when an exception condition is detected early in processing the command. Uncommitted changes to recoverable resources made up to that point in the task are committed if the CREATE runs successfully, and rolled back if not. See Creating resource definitions for other general rules governing CREATE commands.

Options

ATTRIBUTES(data-value)
Specifies the attributes of the URIMAP definition being added. The list of attributes must be coded as a single character string using the syntax shown in URIMAP definition attributes. See The ATTRIBUTES option for general rules for specifying attributes, and URIMAP attributes for details about specific attributes.
ATTRLEN(data-value)
Specifies the length in bytes of the character string supplied in the ATTRIBUTES option, as a halfword binary value. The length must not exceed 32,767 bytes.
LOGMESSAGE(cvda)
Specifies whether CICS logs the attributes used for the resource that is created. CVDA values are as follows:
LOG
The resource attributes are logged to the CSDL transient data queue.
NOLOG
The resource attributes are not logged.
URIMAP(data-value)
Specifies the 8-character name of the URIMAP definition to be added to the CICS region.

Conditions

INVREQ
RESP2 values:
n
The ATTRIBUTES string contains a syntax error, or an error occurred during either the discard or resource definition phase of the processing. The RESP2 value is associated with a message written to the transient data queue CSMT, which identifies more precisely the nature of the error. See RESP2 values for EXEC CICS CREATE and EXEC CICS CSD commands for information on RESP2 values.
7
The LOGMESSAGE CVDA value is not valid.
200
The command was executed in a program defined with an EXECUTIONSET value of DPLSUBSET or a program invoked from a remote system by a distributed program link without the SYNCONRETURN option.
LENGERR
RESP2 values:
1
The length that you have specified in ATTRLEN is negative.
NOTAUTH
RESP2 values:
100
The user associated with the issuing task is not authorized to use this command.