You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Che Dong <ch...@hotmail.com> on 2003/01/20 16:44:42 UTC

catalina.bat bug: can't start up tomcat with: startup -Dfile.encoding="ISO-8859-1" -Duser.language="en" %CMD_LINE_ARGS% and %MAINCLASS% should be switched

I try to startup tomcat on my Chinese Windows2000 with English environment, but I found I can't startup tomcat:
>startup -Dfile.encoding="ISO-8859-1" -Duser.language="en"

and I checked the catalina.bat and echo the full cammand as following:
start "Tomcat" ... org.apache.catalina.startup.Bootstrap  -Dfile.encoding="ISO-8859-1" -Duser.language="en" start

the server starts ok after modified to:
start "Tomcat" ... -Dfile.encoding="ISO-8859-1" -Duser.language="en" org.apache.catalina.startup.Bootstrap start


so I think the %CMD_LINE_ARGS% should before the %MAINCLASS% other wise some JVM arguments can't transfer to mainclass after mainclass has been loaded.
%_EXECJAVA% %JAVA_OPTS% ... %MAINCLASS% %CMD_LINE_ARGS% %ACTION%
==>
%_EXECJAVA% %JAVA_OPTS% ... %CMD_LINE_ARGS%  %MAINCLASS%  %ACTION%
                               ^-------------------^

My system: (Windows 2000 Chinese version) SUN JDK-1.4.1 tomcat 4.1.18-LE

Che, Dong