Re: Pass parameter to the JVM at startup

2005-05-07 Thread Michael Echerer
Looking back I was starting Tomcat from inside Eclipse with the Sysdeo Tomcat Plugin which apparently doesn't use the tomcat startup scripts, i.e., it bypasses startup.sh so it never sees -server. When I started tomcat manually via the cli with startup.sh with the JAVA_OPTS in catalina.sh it

Re: Tomcat 5 slow, it's in production, please help!

2005-05-07 Thread Oto Bossert
Yoo, Yes switch to jk2 is faster! set parameters in OPT_CATALINA with -server Xmx=? and Xms=? Sorry values depend on your available memory on the server, parameters could be different with your version, check or google for correct parameters, should improve performance... Another option could

Re: Tomcat 5 slow, it's in production, please help!

2005-05-07 Thread Michael Echerer
Oto Bossert wrote: Yoo, Yes switch to jk2 is faster! But unsupported! Development of mod_jk1.x is going on, but not jk2. I wouldn't advise anyone to select something uncontinued. I set the session timeout time to 5 minutes, but in the session view of tomcat manager, I see message 30 - 40

Simple JavaBeans applications not working (newbie question)

2005-05-07 Thread Michael Strorm
Hi, First off, let me apologise for the level of detail in this message; if possible, I'd have made it shorter. Anyway, I'm trying to learn J2EE; Tomcat seemed like a good choice to learn the underlying technology, rather than a particular JSP/Servlet container's deployment tool. I can get

JK Connector - Can't get it to work

2005-05-07 Thread Pep Blast
Hi everyone, I have studied this problem for a week now, and I can't seem to figure it out. All I want to do is connect Tomcat 5.5.4 Server to Apache 2.0.52. I've read the documents about the jk connector over and over, and tried doing the setup with many tiny variations, but whatever I do

RE: Tomcat 5 slow, it's in production, please help!

2005-05-07 Thread Jeffrey
I am sorry, the box runs a Solaris 5.6 instead of 2.6 as I said before. But still you are probably right, it would be better to get a new OS installed. I didn't use ndd commands to set the TCP parameters. So even though we have the session timeout set to 5 minutes at the tomcat level, that

RE: Tomcat 5 slow, it's in production, please help!

2005-05-07 Thread Tony
As a wild guess Browser drops the connection immediately without notice After 5 minutes, tomcat decides to drop the connection After 30 minutes or so, Solaris finally finishes dropping the connection. Gives a strange meaning to Keep-Alive ;) -Original Message- From: Jeffrey [mailto:[EMAIL

Re: Tomcat 5 slow, it's in production, please help!

2005-05-07 Thread Jeffrey
This website has many JSP pages of which each has many JSPF included. I wonder whether or not the system is not be able to handle this kind of setting. But strange thing is that when we experienced the slowness, I looked at the usage of CPU and find that almost 90% of the CPU is idle. Do anyone

How do I handle International Characters

2005-05-07 Thread David Harland
I am using Tomcat 5.0 and I am trying to receive and send thai characters. Can someone please tell me the simplest ways to do this. Many thanks Dave. __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around

Re: How do I handle International Characters

2005-05-07 Thread Mark Thomas
http://jakarta.apache.org/tomcat/faq/misc.html#tomcat5CharEncoding Mark David Harland wrote: I am using Tomcat 5.0 and I am trying to receive and send thai characters. Can someone please tell me the simplest ways to do this. Many thanks Dave. __ Do

Re: How do I handle International Characters

2005-05-07 Thread David Harland
Hi Mark If I have tried the following. response.setContentType(text/html; charset=utf-8); PrintWriter out = response.getWriter(); request.setCharacterEncoding(UTF-8); String test=request.getParameter(login); out.println(Input string:+test);

Re: JK Connector - Can't get it to work

2005-05-07 Thread Peter Rossbach
Hey, Has your workers.properties a correct setup? worker.list=ajp13 worker.ajp13.type=ajp13 worker.ajp13.port=8009 worker.ajp13.host=localhost worker.ajp13.cachesize=150 worker.ajp13.cache_timeout=600 What mod_jk Version you use? Better config at mod_jk =1.2.10 add this worker.list=router,jkstatus

Re: Tomcat 5 slow, it's in production, please help!

2005-05-07 Thread Parsons Technical Services
127421 over what period of time? Without a profile it is impossible to say if Tomcat can handle the load. But if the memory consumption and the CPU usage is low (as noted) it is fairly safe to say that Tomcat itself is not the bottle neck. Quick question, why are you using Apache? Also what is

Re: How do I handle International Characters

2005-05-07 Thread Mark Thomas
David, You also need to look at how the parameters are set in the first place. Are you using GET or POST? If you are using GET have you set any of the character encoding settings on the connector? The following index.jsp works for me: %@ page contentType=text/html; charset=UTF-8 % !DOCTYPE HTML

Re: Tomcat 5 slow, it's in production, please help!

2005-05-07 Thread Jeffrey
Please see the answer embedded below. --- Parsons Technical Services [EMAIL PROTECTED] wrote: 127421 over what period of time? It's about 6 hours. But most of them are at the first hour or so. Without a profile it is impossible to say if Tomcat can handle the load. But if the memory

Re: Tomcat 5 slow, it's in production, please help!

2005-05-07 Thread Jeffrey
It seems that, at least in most cases, the main menu page after a login is loaded slow. After that other pages are loaded pretty quick. Does that mean once a connection is established, browser and server communication is ok. If that is the case, maybe I should look more at the connection timeout

Re: Simple JavaBeans applications not working (newbie question)

2005-05-07 Thread Anoop kumar V
Michael, Everything works perfectly fine in your jsp and bean except that the package mentioned in your bean (Beany.java) file seems incorrect: It is: ** BEANY.JAVA package subapp; It should be: ** BEANY.JAVA package subclass; Or else an alternative is to change the folder

Re: Simple JavaBeans applications not working (newbie question)

2005-05-07 Thread Anoop kumar V
Another thing I noticed that you have placed your bean as a jar in the WEB-INF/lib directory - while this works perfectly the practice is to put custom class files in the WEB-INF/classes directory as just .class files under their respective folders (as per package declaration).. IMO the lib

Re: How do I handle International Characters

2005-05-07 Thread David Harland
#3655;Hi Mark, Many thanks for your help. Dave. --- Mark Thomas [EMAIL PROTECTED] wrote: David, You also need to look at how the parameters are set in the first place. Are you using GET or POST? If you are using GET have you set any of the character encoding settings on the connector?

ClassNotFoundException - common/lib works, shared/lib gets exception

2005-05-07 Thread Rich Mayfield
So that I avoid already loaded classloader problems with jar's that front native library calls via JNI, I am following the pattern of putting the jars into shared/lib. However, I get a ClassNotFoundException. If I put this into CATALINA_HOME/common/lib, everything works fine. It's my

ClassNotFoundException - common/lib works, shared/lib gets exception

2005-05-07 Thread Rich Mayfield
So that I avoid already loaded classloader problems with jar's that front native library calls via JNI, I am following the pattern of putting the jars into shared/lib. However, I get a ClassNotFoundException. If I put this into CATALINA_HOME/common/lib, everything works fine. It's my

Re: Tomcat 5 slow, it's in production, please help!

2005-05-07 Thread Parsons Technical Services
I think that would be the direction I would take. If you need more proof: Sniff the connection to the server to confirm the lack of available connections. So far it is pointing in that direction. Another test you might do is create a connection from a known IP, close the browser and monitor the

Re: context.xml created by Ant not discovered by Tomcat

2005-05-07 Thread Matt Galvin
Here is context.xml... Context path=/xx docBase=xx crossContext=true Resource name=jdbc/xxDb auth=Container type=javax.sql.DataSource/ ResourceParams name=jdbc/xxDb parameternamefactory/namevalueorg.apache.commons.dbcp.BasicDataSourceFactory/value/parameter

confusion to DBCP

2005-05-07 Thread li yanjing
I'm using mysql + tomcat as server to run jsp pages. and there are JavaBeans too. I have read a lot on the web that using a connection pool is very good. I just wondering why I should configure DBCP in tomcat? i think if i write the database connection in jsp pages(not in beans) I need configure

Re: trouble with Font objects in Tomcat

2005-05-07 Thread Daniel Watrous
Is there at least someone that could tell me where to find more information about the option JAVA_OPTS=-Djava.awt.headless=true? What exactly is its purpose? Thanks in advance. Daniel On 5/6/05, Daniel Watrous [EMAIL PROTECTED] wrote: Hello, I have a web application that uses java.awt.Font

Re: trouble with Font objects in Tomcat

2005-05-07 Thread farhad
Look at this link: http://java.sun.com/j2se/1.4.2/docs/guide/awt/AWTChanges.html#headless This option is being used when you are operating on a machine without graphics support (usually in a server configuration). You will use the option for example when you want to do some AWT/Swing operation