Re: Difficulty with the latest Tomcat 6.x on Windows XP

2008-02-19 Thread Johnny Kewl
--- HARBOR: http://coolharbor.100free.com/index.htm The most powerful application server on earth. The only real POJO Application Server. Making the Java dream come true.

Re: Mapping JSP's to outside of the war or expanded folder

2008-02-19 Thread emerson cargnin
We use windows on the dev workstatios and unix (SunOS 5.10 Generic_120011-14 sun4v sparc SUNW,Sun-Fire-T200) on dev/qa/production servers. We use Java 5 and we are migrating to tomcat 5.5 or 6. Ralph, why do you say it's dangerous? Even if it doesn't have java code, it would have tagslibs.

Re: Tomcat6, Apache, and mod_jk configuration

2008-02-19 Thread Rainer Jung
Hard to tell, without any version, plattform, configuration and log file content information... Usually, if it's mod_jk 1.2.26: Don't forget to put your JkMount into the VirtualHost (or use JkMountCopy). Regards, Rainer Da Rock wrote: I'm trying to get all of the above working together

Re: Tomcat6, Apache, and mod_jk configuration

2008-02-19 Thread David Brown
Yep, something is not right with the Apache config. You need to monitor some logs somewhere. Turn on more logging level before you start i.e. level=Debug or some such value. HTH. Da Rock wrote .. I'm trying to get all of the above working together peacefully with no success whatsoever. I've

Re: Tomcat6, Apache, and mod_jk configuration

2008-02-19 Thread Da Rock
Is it the Apache? Or is it the Tomcat? All the logs say ok... so As I mentioned this is a FreeBSD server- 6.2, Apache2.2, Tomcat 6.0, mod_jk? (latest from FreeBSD ports 1.2.26?). My httpd.conf includes a mod_jk.conf file and the mod_jk.conf calls a workers.properties file. So do I need to put a

Re: Why Tomcat take about 15 minutes to start?

2008-02-19 Thread Leon Rosenberg
for me it looks like a dtd problem. I would check whether you got a remote dtd in your xml files and replace it with lokal. For example the web.xml contains one. regards Leon On Feb 19, 2008 3:26 PM, Mohamed Mohamedin [EMAIL PROTECTED] wrote: The log is like this in the lines that cause the

RE: Why Tomcat take about 15 minutes to start?

2008-02-19 Thread Mohamed Mohamedin
The log is like this in the lines that cause the problem: Feb 18, 2008 10:26:57 PM org.apache.catalina.core.StandardEngine start INFO: Starting Servlet Engine: Apache Tomcat/5.5.25 Feb 18, 2008 10:26:57 PM org.apache.catalina.core.StandardHost start INFO: XML validation disabled log4j:WARN No

Re: Mapping JSP's to outside of the war or expanded folder

2008-02-19 Thread Ralph Goers
emerson cargnin wrote: We use windows on the dev workstatios and unix (SunOS 5.10 Generic_120011-14 sun4v sparc SUNW,Sun-Fire-T200) on dev/qa/production servers. We use Java 5 and we are migrating to tomcat 5.5 or 6. Ralph, why do you say it's dangerous? Even if it doesn't have java code, it

Re: Why Tomcat take about 15 minutes to start?

2008-02-19 Thread Tim Funk
Try (temporarily of course) 1) disabling DNS lookups 2) disabling outbound port 80 connections -Tim Mohamed Mohamedin wrote: The log is like this in the lines that cause the problem: Feb 18, 2008 10:26:57 PM org.apache.catalina.core.StandardEngine start INFO: Starting Servlet Engine:

ActionScript Packages in Tomcat

2008-02-19 Thread Rob Levin
Hello all. Does anyone know if there is a preferred/standard place to put custom ActionScript packages/classes in Tomcat 6? If so, which configuration files need to be modified? Any other clues? BTW, I plan to call the ActionScript(s) from a flex application which will live in the

Re: Mapping JSP's to outside of the war or expanded folder

2008-02-19 Thread emerson cargnin
This is not really an issue for me, as the access to the servers are totally strict and... any idea on how to map to the jsp's outside? Nobody ever need it? how do people migrate from resin then? On 19/02/2008, Ralph Goers [EMAIL PROTECTED] wrote: emerson cargnin wrote: We use windows on the

Re: Manager undeploy task only stops webapp

2008-02-19 Thread Diego Rodríguez Martín
Hi, I'm still investigating this issue. Same behaviour if I use manager directly through the interface instead of using ant task. There has been a message reciently explaining the causes of undeployement problem. It says that an application not shutting down properly because threads

RE: Xmx and Xms where are these values set

2008-02-19 Thread Caldarale, Charles R
From: Modha Khammammettu [mailto:[EMAIL PROTECTED] Subject: Xmx and Xms where are these values set I have a web app which runs on tomcat 5.5 Tomcat comes up as a service. Question: Where are these memory setting coming from Run the tomcat5w.exe program, and look under the Java tab. -

Re: JASPER libraries incompatibilities

2008-02-19 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hitesh, Hitesh Raghav wrote: | I've web-app developed to run with Tomcat 4.2. It used to work perfectly | fine with Tomcat 4.2. 4.2? I don't think there was ever a Tomcat 4.2. Do you mean 4.1? | When same web-app is deployed on Tomcat v5.5.x or

RE: Mapping JSP's to outside of the war or expanded folder

2008-02-19 Thread Caldarale, Charles R
From: emerson cargnin [mailto:[EMAIL PROTECTED] Subject: Re: Mapping JSP's to outside of the war or expanded folder and... any idea on how to map to the jsp's outside? Nobody ever need it? how do people migrate from resin then? Nobody needs it because it's a clear violation of the servlet

RE: Xmx and Xms where are these values set

2008-02-19 Thread Modha Khammammettu
I did that but it has no effect. The problem is what ever I do I still see the same line as output MyMc 2008-02-15 05:05:02,925 INFO Memory usage: 249.923 MB used, 762.700 MB free, 1012.625 MB total, 1012.625 MB max Is tomcat using some default setting to come up with this 1012.625GB, where is

Re: Using mod_jk with other Java programs

2008-02-19 Thread Mark H. Wood
Implementing AJP just to get proxying may be more than you want to do. However, to address your question, notice in jk-workers.properties that mod_jk doesn't point to programs; it points to host:port pairs. Whatever is listening to that port on that host will get the requests that mod_jk siphons

Re: Tomcat6, Apache, and mod_jk configuration

2008-02-19 Thread Jiansen Niu
Since you defined worker1 in you worker.properties, you should use worker1 in the JkMount section of your httpd.conf instead of using localhost below is an example of my configuration which works: LoadModule jk_module modules/mod_jk.so JkWorkersFile /etc/httpd/conf/workers.properties JkLogFile

Re: Why Tomcat take about 15 minutes to start?

2008-02-19 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Neha, Neha Agrawal wrote: | i recompiled my APR 1.2.7 with /dev/urandom Exactly how did you do this? Are you sure you did it correctly? If you were recompiling, why not upgrade to the most recent version (1.2.12)? | and hence recompiled Native

Tomcat 6 and IPv6 config

2008-02-19 Thread Roger Abelenda
Hi, I have a tomcat server running in a machine. When I enter the IPv4 url of the machine it brings me the tomcat server page, but when i enter de IPv6 it can't find the server. The machine that has the tomcat server has OpenSuse installed, and the network interface is correctly configured (I cant

Re: using a class from jar file

2008-02-19 Thread polock
The problem is that I cannot find classes in the WEB_INF\classes directory that I want to extend with my new class. I only have found some .properties file. I was trying to import a war file in eclipse and I coud not find an option that will make it possible. Can these properties files be of any

RE: Xmx and Xms where are these values set

2008-02-19 Thread Caldarale, Charles R
From: Modha Khammammettu [mailto:[EMAIL PROTECTED] Subject: RE: Xmx and Xms where are these values set I did that but it has no effect. Did you actually click thr apply button, and then stop and restart the Tomcat service? Do you have multiple Tomcats installed? If so, are you sure you're

RE: Manager undeploy task only stops webapp

2008-02-19 Thread Caldarale, Charles R
From: Diego Rodríguez Martín [mailto:[EMAIL PROTECTED] Subject: Re: Manager undeploy task only stops webapp I'm still investigating this issue. Same behaviour if I use manager directly through the interface instead of using ant task. Undeployment via the manager webapp in 6.0.16 works

RE: Xmx and Xms where are these values set

2008-02-19 Thread Modha Khammammettu
I think the tomcat installation was corrupted. I tried with a fresh install and I can see the heap and other information just fine. Thanks -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 19, 2008 11:11 AM To: Tomcat Users List Subject:

Re: Mapping JSP's to outside of the war or expanded folder

2008-02-19 Thread Tim Funk
If you are brave ... you can apply this patch: http://svn.apache.org/viewvc?view=revrevision=575332 -Tim emerson cargnin wrote: This is not really an issue for me, as the access to the servers are totally strict and... any idea on how to map to the jsp's outside? Nobody ever need it? how do

RE: getting the start time of Tomcat server.

2008-02-19 Thread Caldarale, Charles R
From: Alejandro [mailto:[EMAIL PROTECTED] Subject: getting the start time of Tomcat server. There is a java Class in tomcat api to get the start time of Tomcat? Not that I'm aware of. It's also not clear what the start time would be: startup of the JVM, load of the Tomcat Bootstrap class,

java.net.SocketException: Connection reset

2008-02-19 Thread Bhatti, Shahzad
I am load testing a local web app running Tomcat 5.5 and as the load test approaches 100 users I start to get java.net.SocketException: Connection reset At that time, I cannot call the tomcat server either through the load test or browser manually. However, if I remove cookies from the browser

Timezone in Tomcat is different from OS's(default)timezone

2008-02-19 Thread sefai
Hi all, I have an application which worked on windows for two years.The IIS-tomcat bridge was using too much cpu even when tomcat hadn't any work to do,so I decided to move this application on an existing Ubuntu machine.On the ubuntu machine,datetime related problems occured,day strings are

Accessing standalone Tomcat from an external IP address

2008-02-19 Thread Rashmi
Hello, I'm trying to configure Tomcat so that it can be accessed externally. The environment is Tomcat 6.0, Fluxbuntu 7.10, JavaSE6. The connection works locally , for example if I try http://localhost:7070/ or http://127.0.0.1:7070/ I can see the app, but if I try with the external ip address

not reading my /etc/tomcat5/tomcat5.conf file

2008-02-19 Thread Kimberly Begley
Hi, I'm running CentOS 5 with Tomcat5 (5.5.2.0) that came with the install. If I try to run dtomcat5 stop or version etc I get the following message below - I have also pasted the tomcat5.conf file below- it is obvious that dtomcat5 is not reading the /etc/tomcat5/tomcat5.conf file - what do I

Re: Mapping JSP's to outside of the war or expanded folder

2008-02-19 Thread Ralph Goers
Right. The only way access to your servers is totally strict is if they have no network connection and no human input devices connected. However, in the spirit in which you probably meant this, I will have to point out that if your web apps are running on the internet then what you are