----------
From: Kurt Williams kwilliams@STERWENT.COM
To: SERVLET-INTEREST@JAVA.SUN.COM
Subject: Re: Off Topic: Out of environment space
Date: Mon, Mar 15, 1999, 1:57 PM
On Win 95 and Win 98, you have to change an environment variable. The
problem is often caused by the long classpath variables commonly used in
java programs. Add the following line to your CONFIG.SYS file and then
reboot your machine:
SHELL=c:\command.com c:\ /e:2048 /p
BTW, the /e:2048 indicates the number of bytes to allocate for
environment space. If 2048 isn't enough, try /e:4096 or even higher.
This should fix your problem.
- Kurt W. |