You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by 车 东 <ch...@hotmail.com> on 2003/01/20 17:43:59 UTC

Fwd: catalina.bat bug: can't start up tomcat with: startup -Dfile.encoding="ISO-8859-1" -Duser.language="en"

>From: "Che Dong" <ch...@hotmail.com>
>To: <to...@jakarta.apache.org>
>Subject: 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
>Date: Mon, 20 Jan 2003 23:44:42 +0800
>
>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 the %CMD_LINE_ARGS% should before the %MAINCLASS% other wise some JVM 
arguments can't transfer to mainclass after mainclass has been loaded.

I think the %CMD_LINE_ARGS% and %MAINCLASS% in catalina.bat should be 
switched:
>%_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

Regards
>
>Che, Dong
>


_________________________________________________________________
享用世界上最大的电子邮件系统― MSN Hotmail。 http://www.hotmail.com 


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>