Web Container Settings

Session timeout

Default Web Container timeout may be overriden in jython file:

# Web Container defaults
webContainerSessionTimeout = 30

Set to "-1" to disable session timeout:

webContainerSessionTimeout = -1

Web Container inbound custom properties

You can set web container inbound custom properties. The example below is illustrative.

#---------------------------------------------------
# Web Container Custom Properties
#---------------------------------------------------
webContainerInboundCustomProps = [[["name", "CookiesConfigureNoCache"], ["required", "false"], ["value", "false"]]]
webContainerSessionTimeout = 35

You can also set web container inbound custom properties for secure transport chains. The example below is illustrative.

#-------------------------------------------------------------
# Web Container Custom Properties for Secure Transport Chains
#-------------------------------------------------------------
webContainerInboundSSLCustomProps = [[["name", "CookiesConfigureNoCache"], ["required", "false"], ["value", "false"]]]

Web Container properties:

You can set web container properties. The example below is illustrative.

#---------------------------------------------------
# Web Container Related Variables
#---------------------------------------------------

webContainerSessionTimeout      = 20
webContainerProperties  = [[["name", "fileServingEnabled"], ["value", "false"]]]
webContainerProperties.append([["name", "ConnectionIOTimeOut"], ["value", "60"]])
webContainerProperties.append([["name", "PROPERTY_NAME"], ["value", "PROPERTY_VALUE"]])

The ConnectionIOTimeOut value can help if the HTTP socket might time out before the Web service engine completely reads the SOAP request. To solve the problem, increase the ConnectionIOTimeOut parameter for the Web container HTTP transport using this web container property.