|
Problem |
The logs show the following csect name,
system ABEND code and reason code:
Csect name: BBOOORBP
System abend code: 0EC3
Abend reason code: 04060012
Even though you code protocol_https_timeout_output_recovery=SESSION in
current.env for Version 4 or the Administrative Console for Version 5 you
may still see the ABEND if you do not have HEAP(,,,FREE) in the Servant
region procedure.
|
|
Cause |
Language Environment® (LE) HEAP parameter set to KEEP
rather than FREE |
|
Solution |
Check your WebSphere® Application Server Servant
region procedure. The jcl below shows the correct value for the
HEAP setting:
.
//BBO5ASR PROC ENV=AQTS.AQTS.BBOS001,Z=BBO5ASRZ
// SET ROOT='/WebSphere/V5R0M0'
// SET
LEPARM1=TRAP(ON,NOSPIE),ENVAR("_EDC_UMASK_DFLT=007")
// SET LEPARM2='HEAP(,,,FREE)'
//BBOSR EXEC PGM=BBOSR,REGION=0M,TIME=NOLIMIT,
// PARM='&LEPARM1,&LEPARM2 /'
//BBOENV DD PATH='&ROOT/&ENV/was.env'
// INCLUDE MEMBER=&Z
You can resolve this problem by coding
HEAP(,,,FREE) |
|
|
|
|
|
|
|