Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Dear all,
One customer meet a problem, when he public the manual use Arbortext6.0, the sytem show the following message,
Maybe it means Java virtual memory is too small? How can we solve this problem?
Thank you very much!
Solved! Go to Solution.
Hi Lorin Xie
Please search 'set javavmmemory' keyword in Arbortext Help Center.
If you want apply 'set javavmmemory'. Try to insert below script into the *.acl in the 'Arbortext Installed Foler/custom/init' folder.
(If any *.acl file does not exist in the 'Arbortext Installed Foler/custom/init' folder, you try to create instance.acl file in the folder.)
function init()
{
if (!java_init()) {
set javavmmemory=900
}
}
init();
Hi Lorin Xie
Please search 'set javavmmemory' keyword in Arbortext Help Center.
If you want apply 'set javavmmemory'. Try to insert below script into the *.acl in the 'Arbortext Installed Foler/custom/init' folder.
(If any *.acl file does not exist in the 'Arbortext Installed Foler/custom/init' folder, you try to create instance.acl file in the folder.)
function init()
{
if (!java_init()) {
set javavmmemory=900
}
}
init();
Hi Joon, thank you very much! I will follow your suggestion, thanks again!