setting JAVA_OPT in Tomcat

2008-06-06 Thread luke l
Hi, I must start Tomcat setting a value for this attribute com.sun.CORBA.transport.ORBTCPReadTimeouts (it set a Timeout for a corba socket). I've tried to add com.sun.CORBA.transport.ORBTCPReadTimeouts in JAVA_OPTS Tomcat variable in catalina.sh script: JAVA_OPTS=$JAVA_OPTS

Re: setting JAVA_OPT in Tomcat

2008-06-06 Thread David Delbecq
En l'instant précis du 06/06/08 09:42, luke l s'exprimait en ces termes: Hi, I must start Tomcat setting a value for this attribute com.sun.CORBA.transport.ORBTCPReadTimeouts (it set a Timeout for a corba socket). I've tried to add com.sun.CORBA.transport.ORBTCPReadTimeouts in JAVA_OPTS Tomcat

Fwd: setting JAVA_OPT in Tomcat

2008-06-06 Thread luke l
*Don't forget to add a space between $JAVA_OPTS and your additionnal option. In your case, you joined -J and -D parameters without a space, as a result the jvm does not recognize an option named J-D :)* I've again an error Unrecognized option:

Re: Fwd: setting JAVA_OPT in Tomcat

2008-06-06 Thread David Delbecq
En l'instant précis du 06/06/08 10:23, luke l s'exprimait en ces termes: *Don't forget to add a space between $JAVA_OPTS and your additionnal option. In your case, you joined -J and -D parameters without a space, as a result the jvm does not recognize an option named J-D :)* I've again an error

Re: Fwd: setting JAVA_OPT in Tomcat

2008-06-06 Thread David Delbecq
-- From: luke l [EMAIL PROTECTED] Date: Jun 6, 2008 10:23 AM Subject: Fwd: setting JAVA_OPT in Tomcat To: users@tomcat.apache.org *Don't forget to add a space between $JAVA_OPTS and your additionnal option. In your case, you joined -J and -D parameters without a space, as a result the jvm does

Fwd: setting JAVA_OPT in Tomcat

2008-06-06 Thread luke l
not create the Java virtual machine. thanks... -- Forwarded message -- From: luke l [EMAIL PROTECTED] Date: Jun 6, 2008 2:27 PM Subject: Fwd: setting JAVA_OPT in Tomcat To: users@tomcat.apache.org Putting a space in catalina.sh as follow JAVA_OPTS=$JAVA_OPTS

Fwd: setting JAVA_OPT in Tomcat

2008-06-06 Thread luke l
... Just add, at top of your catalina.sh, just after defining JAVA_OPTS= echo JAVA_OPTS is $JAVA_OPTS .. wow.I set previously JAVA_OPTS in another temp script!!! now it's owrking properlyI'm sorry for so stupid question ! Thanks a lot David..have a nice weekend