Skip to main content
Mitratech Success Center

Client Support Center

Need help? Click a product group below to select your application and get access to knowledge articles, webinars, training content, and release notes or to contact our support team.

Authorized users - log in to create a ticket, view tickets status and check your success plan details.

 

weblogic.xml Parameters

If you are using WebLogic as your application server, there are certain values in the weblogic.xml file, located in the /WEB-INF directory of the TeamConnect .war file. These parameters apply only to WebLogic. You should not modify these values.

Parameters in weblogic.xml

Parameter

Description

Suggested value

pageCheckSeconds

Sets the interval, in seconds, at which WebLogic checks to see if JSP files have changed and need recompiling.

If set to -1, page checking and recompiling is disabled (recommended for production mode). If set to 0, pages are checked on every request.

-1 (in production environment)

CookieName

Sets the name of the session cookie. If the session cookie has a unique name, this reduces some runtime behavior issues such as unexpected session time-outs. One way to establish a unique name is to derive the name of the cookie from the context path of the application: <ContextPath>SessionID. Note that this parameter is contained inside different elements than the other weblogic.xml parameters. Example:

<session-descriptor>

<cookie-name>TCSESSIONID</cookie-name>

</session-descriptor>

TCSESSIONID

container- descriptor

Sets the policy for checking for expired static resources. Values of -1 suppress checking, thus improving performance. Example:

<container-descriptor>

<servlet-reload-check-secs>-1</servlet- reload-check-secs>

<resource-reload-check-secs>-1</resource- reload-check-secs>

<prefer-web-inf-classes>false</prefer-web- inf-classes>

</container-descriptor>

-1

 

  • Was this article helpful?