java.awt.headless=true in tomcat startup

2005-02-04 Thread Rodrigo Avila
Hi! I try to use some awt\swing classes to convert rtf strings to html in an jsp page. But I receive the following Exception: Can't connect to X11 window server using ':0.0' as the value of the DISPLAY variable. But, to resolve this problem, I find the following tip: assuming you're using a 1.4

Re: java.awt.headless=true in tomcat startup

2005-02-04 Thread Filip Hanik - Dev
put it in the /bin/catalina.sh script Filip - Original Message - From: Rodrigo Avila [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Friday, February 04, 2005 10:57 AM Subject: java.awt.headless=true in tomcat startup Hi! I try to use some awt\swing

Re: java.awt.headless=true in tomcat startup

2005-02-04 Thread Charles N. Harvey III
You set this somewhere in either the tomcat-home/bin/catalina.sh or tomcat-home/bin/startup.sh. If you don't want to do any of that, have an InitServlet that does System.setProperty( java.awt.headless, true ); That will do the same thing. Charlie Rodrigo Avila said the following on 2/4/2005 11:57

Re: java.awt.headless=true in tomcat startup

2005-02-04 Thread Larry Meadors
no no no - it should go in setenv.sh - that is what it is for - that way you do not have to tweak the existing files. On Fri, 04 Feb 2005 12:04:36 -0500, Charles N. Harvey III [EMAIL PROTECTED] wrote: You set this somewhere in either the tomcat-home/bin/catalina.sh or

Re: java.awt.headless=true in tomcat startup

2005-02-04 Thread Jens Joachim
: [EMAIL PROTECTED] - Original Message - From: Rodrigo Avila [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Friday, February 04, 2005 5:57 PM Subject: java.awt.headless=true in tomcat startup Hi! I try to use some awt\swing classes to convert rtf strings