RE: set CLASSPATH DOS 8.3 names maybe used in TOMCAT_HOME

2001-03-12 Thread Darrell Porter



You 
must set a CLASSPATH variable. As you have used extended directory names 
(i.e. C:\Program Files\Apache Web Server\Jakarta-Tomcat), you'll need to 
explicitly set a CLASSPATH environment variable.

something like 

set 
CLASSPATH=%TOMCAT_HOME%\webapps\ROOT\WEB-INF\classesset 
CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\webapps\ROOT\WEB-INF\lib\struts.jarset 
CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\lib\servlet.jarset 
CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\webapps\ROOT\WEB-INF\lib\jdom.jarset 
CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\webapps\ROOT\WEB-INF\lib\xerces.jarset 
CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\webapps\ROOT\WEB-INF\lib\jturbo.jarset 
CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\webapps\ROOT\WEB-INF\lib\j2ee.jarset 
CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\lib\jaxp.jarset 
CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\lib\parser.jar

I hope 
this helps


_ 

  
Darrell Porter Operations Manager 415.355.9990 
x290 [EMAIL PROTECTED] 
WiseConnect, Inc. http://www.wiseconnect.com/ "Powering the people behind stores" 
Visit our GlobalShop booth #4473 in 
i3Go wireless with the 
WiseConnect Workspace  Palm!Enter 
to win 
a Palm VII by selecting: Enter to Win! http://www.wiseconnect.com/palmVII.html 


  -Original Message-From: Richard Tham 
  [mailto:[EMAIL PROTECTED]]Sent: Monday, March 12, 2001 11:01 
  AMTo: [EMAIL PROTECTED]Subject: set 
  CLASSPATH DOS 8.3 names maybe used in TOMCAT_HOME
  
  Hi,
  
  I'm running Win ME.
  Here is a copy of my autoexec.bat 
  file:
  
  SET COMSPEC=C:\WINDOWS\COMMAND.COMSET windir=C:\WINDOWSSET 
  winbootdir=C:\WINDOWSSET PROMPT=$p$gSET TEMP=C:\WINDOWS\TEMPSET 
  TMP=C:\WINDOWS\TEMPSET 
  PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\JDK1.3\BINSET 
  JAVA_HOME=C:\JDK1.3SET ANT_HOME=C:\Progra~1\Apache~1\jakart~1\SET 
  TOMCAT_HOME=C:\Progra~1\Apache~1\jakart~1\However, when running startup.bat file, I got the following error 
  msg:
  
  Unable to set CLASSPATH dynamicallyNote: To set CLASSPATH dynamically 
  in Win9X systemsonly DOS 8.3 names maybe used in TOMCAT_HOME!!
  
  I've posted a copy of the screenshot 
  here:
  http://pwp.maxis.net.my/richardtham/screen.jpg
  Pls help !!
  What does it mean by DOS 8.3 names use in 
  TOMCAT_HOME ??
  Is this the right way to set path in Win ME 
  ??
  
  Any help is greatly appreciated !!
  
  Best Regards,
  
  Richard
  
  
  


RE: set CLASSPATH DOS 8.3 names maybe used in TOMCAT_HOME

2001-03-12 Thread James Carroll

 
Don't forget: Windows ME doesn't look at your AUTOEXEC.BAT!!!
 
On my system, I have to choose Start, Run,   msconfig
msconfig adjusts the registry to do do the same things that you would
usually do in Autoexec.bat.  (   It still requires frequent reboots :(
)
 
I actually don't believe in setting CLASSPATH during start-up.  This
is what the startup.bat is (correctly) doing for you.  Any classes that
I want available on the machine go in  C:\jdk1.3\jre\lib\ext  And I
set the classpath on the command line via -cp whenever possible.
 
 
Best Regards,
-James Carroll

MicroBrightField Inc. 

-Original Message-
From: Darrell Porter [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 12, 2001 3:16 PM
To: '[EMAIL PROTECTED]'
Subject: RE: set CLASSPATH DOS 8.3 names maybe used in TOMCAT_HOME


You must set a CLASSPATH variable.  As you have used extended directory
names (i.e. C:\Program Files\Apache Web Server\Jakarta-Tomcat), you'll
need to explicitly set a CLASSPATH environment variable.
 
something like 
 
set CLASSPATH=%TOMCAT_HOME%\webapps\ROOT\WEB-INF\classes
set
CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\webapps\ROOT\WEB-INF\lib\struts.jar
set CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\lib\servlet.jar
set
CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\webapps\ROOT\WEB-INF\lib\jdom.jar
set
CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\webapps\ROOT\WEB-INF\lib\xerces.jar
set
CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\webapps\ROOT\WEB-INF\lib\jturbo.jar
set
CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\webapps\ROOT\WEB-INF\lib\j2ee.jar
set CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\lib\jaxp.jar
set CLASSPATH=%CLASSPATH%;%TOMCAT_HOME%\lib\parser.jar
 
I hope this helps
 

_ 


Darrell Porter 
Operations Manager 
415.355.9990 x290 
[EMAIL PROTECTED] 

WiseConnect, Inc.  http://www.wiseconnect.com/
http://www.wiseconnect.com/  
"Powering the people behind stores" 

Visit our GlobalShop booth #4473 in i3

Go wireless with the WiseConnect Workspace  Palm!
Enter to win a Palm VII by selecting: 
Enter to Win!  http://www.wiseconnect.com/palmVII.html
http://www.wiseconnect.com/palmVII.html  


-Original Message-
From: Richard Tham [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 12, 2001 11:01 AM
To: [EMAIL PROTECTED]
Subject: set CLASSPATH DOS 8.3 names maybe used in TOMCAT_HOME



Hi,
 
I'm running Win ME.
Here is a copy of my autoexec.bat file:
 
SET COMSPEC=C:\WINDOWS\COMMAND.COM
SET windir=C:\WINDOWS
SET winbootdir=C:\WINDOWS
SET PROMPT=$p$g
SET TEMP=C:\WINDOWS\TEMP
SET TMP=C:\WINDOWS\TEMP
SET PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\JDK1.3\BIN
SET JAVA_HOME=C:\JDK1.3
SET ANT_HOME=C:\Progra~1\Apache~1\jakart~1\
SET TOMCAT_HOME=C:\Progra~1\Apache~1\jakart~1\

However, when running startup.bat file, I got the following error msg:
 
Unable to set CLASSPATH dynamically
Note: To set CLASSPATH dynamically in Win9X systems
only DOS 8.3 names maybe used in TOMCAT_HOME!!
 
I've  posted a copy of the screenshot here:
http://pwp.maxis.net.my/richardtham/screen.jpg
http://pwp.maxis.net.my/richardtham/screen.jpg 

Pls help !!
What does it mean by DOS 8.3 names use in TOMCAT_HOME  ??
Is this the right way to set path in Win ME ??
 
Any help is greatly appreciated !!
 
Best Regards,
 
Richard
 
 
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]