where find documentation

2014-05-16 Thread Francesco Viscomi
Hi all, i'm try to find a documentation that describe every tag inside the web.xml file, but i wasn't able to find anything about that on http://tomcat.apache.org/tomcat-5.5-doc/config/context.html someone can help me? thanks in advance; Francesco Italy

Re: Application monitoring

2014-05-16 Thread Leon Rosenberg
Hello David, I will not ask you why you are reinventing the wheel (ok, I lied, why are you reinventing the wheel?). You have multiple options available: 1) You could use jmx and publish your information as jmx beans. 2) You could use rmi between you 'collector' and the target apps. 3) You could

Is the listserv down?

2014-05-16 Thread Jeffrey Janner
Last message I got was Mark notifying Martin he was toast. That was 2 days ago. Jeffrey Janner Sr. Network Administrator jeffrey.jan...@polydyne.commailto:first.l...@polydyne.com PolyDyne Software Inc. Main: 512.343.9100 Direct: 512.583.8930 [cid:image002.png@01CC0FB7.4FF43CE0] Speed,

Re: Compiling mod_jk in CentOs release 6.5

2014-05-16 Thread Doug Tucker
/configure --with-apxs=/usr/lib64/httpd/modules whenever I run above I keep getting this: configure: error: You must specify a valid --with-apxs path Any ideas why I am getting this error? I just did this with my centos 6.5 system and the command I used was: ./configure

Tomcat dependency on application server

2014-05-16 Thread Randhir Singh
Hi, We have JBoss as the application server Tomcat as the web server in our production developmental setup which is on Red Hat Linux 5.X. We have tomcat 6.X. My query is that if I need to restart tomcat, do I need to restart JBoss Tomcat both or just restarting Tomcat would be enough. I am

Re: tomcat6 thread locked

2014-05-16 Thread devoss ind
On 7 May 2014 17:37, devoss ind devoss@gmail.com wrote: Hi, Am using tomcat 6, java6 in production environment to run our web application. We found that recently, cpu in top is showing 100% nearly. Then we dig into each thread cpu usage by -H option in top. We found only one thread is

Re: Comet Servlet with a reverse proxy in front of it

2014-05-16 Thread Elias Kopsiaftis
Hey, I actually got this working so far with nginx(and by so far I mean the random connection errors I was getting with apache2 have not surfaced yet). Ill post the nginx config setup later today when I get home for the benefit of anyone else who wants to do this. On Mon, May 12, 2014 at 3:34

Slow page response time in tomcat 8.0.5

2014-05-16 Thread Hariprasad Manchi
Hi, We are trying to use apache-tomcat 8.0.5 for our web application and have encountered performance issue with respect to the page response time. However, once the application is deployed in 8.0.5 we see a longer delay in response time from the server for the login page itself. With older

Re: Increment XX:PermSize for Tomcat 7 on Windows 2012R2

2014-05-16 Thread Daniel Mikusa
On May 12, 2014, at 10:54 AM, Lorenzo Fini loreatt...@gmail.com wrote: Hi, I'm trying to increment the PermSize on Tomcat 7. I added -XX:PermSize in the java options launching tomcat7w, causing Tomcat to not load and to give me the following error on Windows Server 2012R2: Unrecognized

Re: where find documentation

2014-05-16 Thread Арсений Зинченко
I used this one: http://wiki.metawerx.net/wiki/Web.xml 2014-05-15 16:05 GMT+03:00 Francesco Viscomi fvisc...@gmail.com: Hi all, i'm try to find a documentation that describe every tag inside the web.xml file, but i wasn't able to find anything about that on

RE: Test Mail, Please Ignore

2014-05-16 Thread Sebastien Tardif
I sent email below yesterday and never saw it in the list: -Original Message- From: Sebastien Tardif Sent: Wednesday, May 14, 2014 12:59 PM To: 'Tomcat Users List' Subject: Slow execution of Tomcat 7.0.52 due to coarse lock in WebappClassLoader.loadClass I'm having some visible

Re: Best practice to load object in memory.

2014-05-16 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Dhaval, On 5/9/14, 2:46 PM, Dhaval Jaiswal wrote: At the time of initializing tomcat apps server, some object/data loading in memory, which is consuming lot of memory of the server. What is the best practice to handle it. Loading of

Re: Slow page response time in tomcat 8.0.5

2014-05-16 Thread Leon Rosenberg
Hello Hariprasad, you could embed moskito webui into your application, annotate your tags with @Monitor and you would see how long they execute and what is the execution path, which tags are called during an http request how often and how long they execute. You can follow this link for more

Re: Application monitoring

2014-05-16 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Mark, On 5/14/14, 1:41 PM, Mark Eggers wrote: On Wed, 14 May 2014 12:28:46 -0400, David kerber wrote: I am working on a small Tomcat servlet to monitor other tomcat-based applications running on the same physical machine, and am trying to

NoClassDefFoundError: org/apache/tomcat/util/descriptor/LocalResolver Error while building project after Tomcat upgrade to 7.0.53 from 7.0.41 !

2014-05-16 Thread Utkarsh Dave
I am trying to upgrade my Tomcat from 7.0.41 to the latest release 7.0.53 available and the project build failed with below error. java.lang.NoClassDefFoundError: org/apache/tomcat/util/descriptor/LocalResolver at org.apache.jasper.xmlparser.ParserUtils.init(ParserUtils.java:69)

Re: Slow execution of Tomcat 7.0.52 due to coarse lock in WebappClassLoader.loadClass

2014-05-16 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Sebastien, On 5/14/14, 12:58 PM, Sebastien Tardif wrote: I'm having some visible performance issue related to the use of method synchronized loadClass(String name, boolean resolve) in WebappClassLoader Are you loading huge numbers of

Re: destroySubcontext failing with NameNotFoudException

2014-05-16 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Ravikiran, On 5/7/14, 6:12 AM, N, Ravikiran wrote: Hi all, I trying to understand under what conditions destroySubContext fails in tomcat..? I'm trying to destroy Context which I had created, because of which I'm unable to createContext the

Re: Application monitoring

2014-05-16 Thread David kerber
On 5/15/2014 9:57 AM, Leon Rosenberg wrote: Hello David, I will not ask you why you are reinventing the wheel (ok, I lied, why are you reinventing the wheel?). You have multiple options available: 1) You could use jmx and publish your information as jmx beans. 2) You could use rmi between you

NoClassDefFoundError: org/apache/tomcat/util/descriptor/LocalResolver Error while building project after Tomcat upgrade to 7.0.53 from 7.0.41 !

2014-05-16 Thread Utkarsh Dave
I am trying to upgrade my Tomcat from 7.0.41 to the latest release 7.0.53 available and the project build failed with below error. java.lang.NoClassDefFoundError: org/apache/tomcat/util/descriptor/LocalResolver at org.apache.jasper.xmlparser.ParserUtils.init(ParserUtils.java:69)

Re: tomcat6 thread locked

2014-05-16 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 devoss, Exact Tomcat version? OS and version? Java version? On 5/15/14, 12:00 PM, devoss ind wrote: On 7 May 2014 17:37, devoss ind devoss@gmail.com wrote: Hi, Am using tomcat 6, java6 in production environment to run our web

Re: Compiling mod_jk in CentOs release 6.5

2014-05-16 Thread J Java
There's no reason to read some how to guide on the Internet for how to build mod_jk: the building steps come with the source package, and they are up-to-date instead of some guy's blog that requires root privileges to run properly. Chris. completely agree. But what you can do when if those

Re: Tomcat dependency on application server

2014-05-16 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Randhir, On 5/15/14, 3:17 AM, Randhir Singh wrote: Hi, We have JBoss as the application server Tomcat as the web server in our production developmental setup which is on Red Hat Linux 5.X. We have tomcat 6.X. My query is that if I need to

Re: Application monitoring

2014-05-16 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 David, On 5/16/14, 11:12 AM, David kerber wrote: On 5/15/2014 9:57 AM, Leon Rosenberg wrote: Hello David, I will not ask you why you are reinventing the wheel (ok, I lied, why are you reinventing the wheel?). You have multiple options

Re: Slow page response time in tomcat 8.0.5

2014-05-16 Thread Mark Thomas
On 15/05/2014 18:04, Hariprasad Manchi wrote: Hi, We are trying to use apache-tomcat 8.0.5 for our web application and have encountered performance issue with respect to the page response time. However, once the application is deployed in 8.0.5 we see a longer delay in response time from the

Re: where find documentation

2014-05-16 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Francesco, On 5/16/14, 10:01 AM, Арсений Зинченко wrote: I used this one: http://wiki.metawerx.net/wiki/Web.xml 2014-05-15 16:05 GMT+03:00 Francesco Viscomi fvisc...@gmail.com: Hi all, i'm try to find a documentation that describe every

Re: where find documentation

2014-05-16 Thread Terence M. Bandoian
On 5/15/2014 8:05 AM, Francesco Viscomi wrote: Hi all, i'm try to find a documentation that describe every tag inside the web.xml file, but i wasn't able to find anything about that on http://tomcat.apache.org/tomcat-5.5-doc/config/context.html someone can help me? thanks in advance; Francesco

Re: Compiling mod_jk in CentOs release 6.5

2014-05-16 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Shailesh, On 5/16/14, 1:57 PM, J Java wrote: There's no reason to read some how to guide on the Internet for how to build mod_jk: the building steps come with the source package, and they are up-to-date instead of some guy's blog that requires

Re: Comet Servlet with a reverse proxy in front of it

2014-05-16 Thread Elias Kopsiaftis
Here is my config for using nginx as a reverse proxy in front of tomcat. Seems to work so far. Just replace the question marks with your configuration server { listen 80; server_name ??; root /var/lib/tomcat7/webapps/?. location / {

Re: Slow execution of Tomcat 7.0.52 due to coarse lock in WebappClassLoader.loadClass

2014-05-16 Thread Mark Thomas
On 14/05/2014 17:58, Sebastien Tardif wrote: I'm having some visible performance issue related to the use of method synchronized loadClass(String name, boolean resolve) in WebappClassLoader I see that the author or least some of the author(s) of the class got the idea in other cases of a

Re: Session fixation Tomcat 7

2014-05-16 Thread Terence M. Bandoian
On 5/8/2014 8:56 PM, Akash Jain wrote: Hi, I am trying to resolve session fixation issue with tomcat 7.0.52 We have a Spring MVC application running on it, and the Auth method is provided by another application which writes cookie, and we use the cookie value to check whether the user is valid