Sorry, this is a little bit of topic. But there is no seperate tomcat
mailinglist and i think many people are using tomcat as server for
jetspeed (as i do).

The shell script "tomcat.sh" has a nice feature, to add every thing
in tomcat/lib to the classpath. This makes life much easier when
updating the different libraries.

-------------------
CLASSPATH=.
for i in ${TOMCAT_HOME}/lib/* ; do
  CLASSPATH=${CLASSPATH}:$i
done
-------------------


I tried to port this to Dos/Win([NT|98|2000):

--------------------
for %%i in (%TOMCAT_HOME%\lib\*.jar) do set CLASSPATH=%CLASSPATH%;%%i
--------------------

but this does *NOT* work.
              =====  
If any Dos/Win([NT|98|2000) guru can make it work, it would be nice to
include
this in the tomcat distribution (and maybe other batches and shell
scripts in the project).

Guido

 
-- 
              Medical |
        Software GmbH |
----wmd---------------------------=========----------
                  |         
    Guido Leister | [EMAIL PROTECTED]
============-----------------------------------------
    Alfred-Wirth-Strasse 8-12 | 41812 Erkelenz
             Tel. 02431/951-0 | www.wmd-medical.de


--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to