Robert Sösemann wrote: >. . .
>. . .set CLASSPATH %CLASSPATH%;D:\tmp\rauser-cocoon\WEB-INF\lib\avalon-excalibur-vm14-20020705. jar;D:\tmp\rauser-cocoon\WEB-INF\lib\avalon-framework-20020627.jar
You need the equals signs in there I think, here's an example that works under windows 2000:
@echo off
set classpath=d:\bla\foo.jar
set classpath=%classpath%;d:\x\y.jar
set classpath=%classpath%;.\z.jar
echo classpath=%classpath%
Running this correctly outputs:
classpath=d:\bla\foo.jar;d:\x\y.jar;.\z.jar
Also, making a SUBST on D:\tmp\rauser-cocoon\ as suggested by someone else would make this more readable.
Hope this helps!
-Bertrand
---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>
To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail: <[EMAIL PROTECTED]>