Petstore sample not working in iAS6.5 wiht PointBase

I am according to the install guide to setup PetStore 1.1.2 in iAS6.5 . And the database is using bundled PointBase.

According to the sample setup guide, which mention that

Running Pet Store with PointBase

Since the JDBC driver for the preinstalled PointBase database server has already been registered during installation of the iPlanet Application Server, you do not need to install and register the driver separately. When running Pet Store with PointBase, all you need to do is register the datasource.

Important Known Issue with pointbase:

In iAS6.5 , petstore sample application configured with Pointbase occassionally causes KJS to dump core if JIT(Just In Time) Compilation is enabled in Hotspot VM. This has been reported as Hotspot VM bug. So users are advised to turn off JIT when configuring petstore with Pointbase(by adding -Djava.compiler=NONE property to JAVA_ARGS in iasenv.ksh script)

My question is how to configure JAVA_ARGS in iasenv.ksh?

Thanks,

Angus

[1060 byte] By [708983] at [2007-11-25 8:05:36]
# 1

open with vi and modify line

JAVA_ARGS="-server -Xss512k -Xms128m -Xmx256m -XX:NewSize=42m -XX:MaxNewSize=342m -XX:+DisableExplicitGC -Xconcurrentio"

to

JAVA_ARGS="-server -Xss512k -Xms128m -Xmx256m -XX:NewSize=42m -XX:MaxNewSize=342m -XX:+DisableExplicitGC -Xconcurrentio -Djava.compiler=NONE"

707662 at 2007-7-1 13:54:34 > top of Java-index,Application & Integration Servers,Application Servers...
# 2

open with vi and modify line

JAVA_ARGS="-server -Xss512k -Xms128m -Xmx256m -XX:NewSize=42m -XX:MaxNewSize=342m -XX:+DisableExplicitGC -Xconcurrentio"

to

JAVA_ARGS="-server -Xss512k -Xms128m -Xmx256m -XX:NewSize=42m -XX:MaxNewSize=342m -XX:+DisableExplicitGC -Xconcurrentio -Djava.compiler=NONE"

707662 at 2007-7-1 13:54:34 > top of Java-index,Application & Integration Servers,Application Servers...