RE: Java +GC question

2013-11-24 Thread Caldarale, Charles R
From: André Warnier [mailto:a...@ice-sa.com] Subject: Java +GC question java version 1.6.0_26 Do we need to tell you to upgrade? to a Java expert eye, does the following GC trace look normal , or pathological, or in-between ? It's a little odd in that there are very few minor GCs

RE: Java +GC question

2013-11-24 Thread Caldarale, Charles R
From: André Warnier [mailto:a...@ice-sa.com] Subject: Re: Java +GC question Whatever happened to the Never change a running system ? What? And not give people something to do? It's a little odd in that there are very few minor GCs occurring. This would imply that whatever objects

RE: Java +GC question

2013-11-24 Thread Caldarale, Charles R
From: Howard W. Smith, Jr. [mailto:smithh032...@gmail.com] Subject: Re: Java +GC question Whatever happened to the Never change a running system ? I usually hear it said like this, if it ain't broke, then don't fix it. :) There's always the Red Green version: If it ain't broke, you're not

RE: parallel deployment question

2013-11-22 Thread Caldarale, Charles R
From: Leo Donahue - OETX [mailto:leodona...@mail.maricopa.gov] Subject: parallel deployment question When I parallel deploy demo##001.war, in my servlet, when I use: servletContext.getContextPath(); it prints: /demo Why doesn't it print /demo##001 ? Because the context path is the

RE: parallel deployment question

2013-11-22 Thread Caldarale, Charles R
From: Leo Donahue - OETX [mailto:leodona...@mail.maricopa.gov] Subject: RE: parallel deployment question I guess I thought it would get the path name from the name of the .war file. Read the doc: http://tomcat.apache.org/tomcat-7.0-doc/config/context.html#Naming deploying demo##001.war on

RE: parallel deployment question

2013-11-22 Thread Caldarale, Charles R
From: Leo Donahue - OETX [mailto:leodona...@mail.maricopa.gov] Subject: RE: parallel deployment question http://tomcat.apache.org/tomcat-7.0-doc/config/context.html#Naming If a version is specified then the context path remains unchanged (the path being demo) and both the **context

RE: How to Deploy an Update to War File

2013-11-21 Thread Caldarale, Charles R
From: Leo Donahue - OETX [mailto:leodona...@mail.maricopa.gov] Subject: RE: How to Deploy an Update to War File In conf/Catalina/localhost I can have xml files that don't match the names of any web app in the webapps directory, and these xml files are treated as web apps. Yes, you can

RE: How to Deploy an Update to War File

2013-11-21 Thread Caldarale, Charles R
From: Leo Donahue - OETX [mailto:leodona...@mail.maricopa.gov] Subject: RE: How to Deploy an Update to War File Can you describe this process a little more? http://tomcat.apache.org/tomcat-7.0-doc/config/context.html#Parallel_deployment So, in other words, if I want to use parallel

RE: Tomcat connection pool bleeding under heavy load

2013-11-18 Thread Caldarale, Charles R
From: David Bullock [mailto:david.bull...@machaira.com.au] Subject: Re: Tomcat connection pool bleeding under heavy load In PooledConnection#borrow(int,String,String) when handling InterruptedException, the code there does: Thread.interrupted();//clear the flag, and bail out but if

RE: $CATALINA_HOME/conf/tomcat-users.xml - access deneid

2013-11-16 Thread Caldarale, Charles R
From: ישראל מלאכי [mailto:alayc...@gmail.com] Subject: Fwd: $CATALINA_HOME/conf/tomcat-users.xml - access deneid My employer wants my to put a war file on tomcat server installed in by http://198.57.249.59:8080/ hostgator.com problem is that I can't get to the app manger since I don't have

RE: [OT] [Fwd: TomEE Professional Support]

2013-11-13 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: [OT] [Fwd: TomEE Professional Support] I got one, but it went to spam. CRM114 FTW! Guess I'll have to plug mine back in... http://www.indelibleinc.com/kubrick/crm114/CRM114.jpg - Chuck THIS COMMUNICATION MAY

RE: Fix your web application so it can cleanly un-deploy and re-deploy - how?

2013-11-06 Thread Caldarale, Charles R
From: Dale Ogilvie [mailto:dale_ogil...@trimble.com] Subject: Fix your web application so it can cleanly un-deploy and re-deploy - how? As I recall undisposed thread locals were a common theme. Have you enabled this Listener?

RE: Restrict the use of JDK classes Tomcat 7 or 6

2013-10-22 Thread Caldarale, Charles R
From: cjder...@gmail.com [mailto:cjder...@gmail.com] On Behalf Of chris derham Subject: Re: Restrict the use of JDK classes Tomcat 7 or 6 Do the mailing list rules state home work questions are in or out of scope? To quote from How To Ask Questions The Smart Way

RE: Restrict the use of JDK classes Tomcat 7 or 6

2013-10-22 Thread Caldarale, Charles R
From: ANALIA DE PEDRO SANTAMARIA [mailto:100074...@alumnos.uc3m.es] Subject: Re: Restrict the use of JDK classes Tomcat 7 or 6 I understand it if you can't answer my questions. Your question was already answered by Aurélien: use a SecurityManager.

RE: can't connect to manager application

2013-10-18 Thread Caldarale, Charles R
From: Edoardo Panfili [mailto:edoa...@aspix.it] Subject: Re: can't connect to manager application seem that the solution is to add privileged=true at $tomcat/conf/context.xml... and the reoload command now works. You really, really, really must not do that. Adding privileged=true to

RE: can't connect to manager application

2013-10-18 Thread Caldarale, Charles R
From: Konstantin Kolinko [mailto:knst.koli...@gmail.com] Subject: Re: can't connect to manager application As Martin Gainty noted, it seems that there is quite a number of errors in how OP's web applications are deployed. All allowed attributes are documented in [1]. Martin G is not likely

RE: can't connect to manager application

2013-10-18 Thread Caldarale, Charles R
From: André Warnier [mailto:a...@ice-sa.com] Subject: Re: can't connect to manager application And about Martin's remarks being right : I don't know why, but my fingers have this automatic reflex of hitting the delete button whenever my eyes see one of these posts. I guess that this

RE: Getting error 403 forbidden while using HTTP PUT method

2013-10-04 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: Getting error 403 forbidden while using HTTP PUT method !-- security-constraint web-resource-collection web-resource-nameABC/web-resource-name url-pattern/api/mode/url-pattern http-methodDELETE/http-method

RE: Different handling of -Dfoo=bar between versions

2013-10-03 Thread Caldarale, Charles R
From: Steve Arch (sarch) [mailto:sa...@cisco.com] Subject: Different handling of -Dfoo=bar between versions I've noticed the following disparity between using two different versions of Tomcat when setting system properties using -D. On the face of it, this is not related to Tomcat. If I

RE: Different handling of -Dfoo=bar between versions

2013-10-03 Thread Caldarale, Charles R
From: Steve Arch (sarch) [mailto:sa...@cisco.com] Subject: RE: Different handling of -Dfoo=bar between versions AWS's tools pass the values to tomcat. This is not an adequate description. Tomcat must be launched by some mechanism, such as the java executable, JSVC service wrapper, class

RE: SSL Configuration with in Tomcat

2013-10-03 Thread Caldarale, Charles R
From: Shyam Kumar [mailto:shyamkuma...@ymail.com] Subject: Re: SSL Configuration with in Tomcat I moved it to my production server(Linux).But I configured it to use SSL port 8443, But when I try calling url from browser (https://www.cogbooks.com) You need to include the port you configured

RE: SSL Configuration with in Tomcat

2013-10-02 Thread Caldarale, Charles R
From: Shyam Kumar [mailto:shyamkuma...@ymail.com] Subject: SSL Configuration with in Tomcat I am a beginner and I  am using tomcat version 5.5.7 in windows 7 Os. Stop right there. That version is over eight years old, and Tomcat 5.5 hasn't been supported for quite some time. Move to

RE: Session does not get invalidated when sessionCookiePath is set to /

2013-10-02 Thread Caldarale, Charles R
From: Stefan Haberl [mailto:birnbu...@gmail.com] Subject: Session does not get invalidated when sessionCookiePath is set to / I've a context.xml like so: Context sessionCookieDomain=acme.org sessionCookieName=acme useHttpOnly=true disableURLRewriting=true / The /

RE: Keeping user roles in different realm than users

2013-09-25 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: Keeping user roles in different realm than users Any other solutions than writing an error-prone homegrown one that will allow to keep users in one realm, user roles in the other realm and still be able to use

RE: Problems with Clustering / Session Replication

2013-09-17 Thread Caldarale, Charles R
From: Daniel Mikusa [mailto:dmik...@gopivotal.com] Subject: Re: Problems with Clustering / Session Replication Are you sure you don't have a firewall? Remember that a firewall could be on the server, the client, or anywhere in between. The OP should first see if a connection can be made

RE: Problems with Clustering / Session Replication

2013-09-17 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: Problems with Clustering / Session Replication While the above is true, OP originally said that everything was on localhost. Note the IP address reported by the OP's netstat: 192.168.1.243. That's decidedly not

RE: Problems with Clustering / Session Replication

2013-09-17 Thread Caldarale, Charles R
From: Nicholas Violi [mailto:nvi...@globalgiving.org] Subject: Re: Problems with Clustering / Session Replication telnet connects fine... ??? Previously, you stated: telnet reports Connection refused. Which is it? Are you sure you don't have a firewall? Double checked that my mac's

RE: Multi-URL Access 1 Webapp

2013-09-13 Thread Caldarale, Charles R
From: Chris Arnold [mailto:carn...@electrichendrix.com] Subject: Multi-URL Access 1 Webapp Tomcat 7.0.3 i believe Not bloody likely - 7.0.3 was never released. If you really are running on 7.0.3, you need to upgrade ASAP. We have a web app that you access from http://domain.tld/share.

RE: Question about non-default keystore passwords

2013-09-13 Thread Caldarale, Charles R
From: James H. H. Lampert [mailto:jam...@touchtonecorp.com] Subject: Question about non-default keystore passwords Is there a way to use a non-default password *without* having to put the password in server.xml, for anybody with command-line access to the system to see it? If you're

RE: 7.0.42 - tomcat-juli.jar not found on classpath

2013-09-05 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: 7.0.42 - tomcat-juli.jar not found on classpath - From a freshly-downloaded apache-tomcat-7.0.42.zip file: I don't see service.bat in there. This appears to be a regression specific to 7.0.42; all previous

RE: 7.0.42 - tomcat-juli.jar not found on classpath

2013-09-05 Thread Caldarale, Charles R
From: Mike Abernethy [mailto:maberne...@yahoo.com] Subject: Re: 7.0.42 - tomcat-juli.jar not found on classpath I downloaded this file again and it's in the bin directory. 64-bit Windows zip It's not present in the plain .zip file since the service wrapper programs aren't included in the

RE: Unable to start apache tomcat server

2013-08-31 Thread Caldarale, Charles R
From: Sushil Prusty [mailto:sushil.pru...@gmail.com] Subject: Re: Unable to start apache tomcat server I am using https://localhost:8080. Use http, not https. If you want to use https, you will need to configure an additional Connector (usually on port 8443), including establishing a

RE: High CPU usage - tomcat 7 and need solutions

2013-08-31 Thread Caldarale, Charles R
From: Karuppu Samy [mailto:cskaru...@gmail.com] Subject: Re: High CPU usage - tomcat 7 and need solutions I need suggestion to limit the memory /CPU limit for tomcat. Is there any variable to setup to limit this? 1. Don't top post. 2. Your question pertains more to your operating system,

RE: context path ignored in conf/Catalina/localhost/*

2013-08-29 Thread Caldarale, Charles R
From: D C [mailto:dc12...@gmail.com] Subject: context path ignored in conf/Catalina/localhost/* Tomcat 7.0.40 I am trying to define all of my contexts in conf/Catalina/localhost/*.xml. This seems to work fine, however I'm having an issue setting the path. myApp.xml Context

RE: Having trouble with common.loader

2013-08-22 Thread Caldarale, Charles R
From: Michael-O [mailto:1983-01...@gmx.net] Subject: Re: Having trouble with common.loader IF you want to decouple libraries from your war, add them to your webapp's classpath, by configuring a VirtualWebappLoader ,

RE: Upgrade to Tomcat 7 Issues

2013-08-09 Thread Caldarale, Charles R
From: Seema Patel [mailto:seema...@hotmail.com] Subject: RE: Upgrade to Tomcat 7 Issues In my WEB-INF/lib I have the following (sorry the list is quite long): activation.jar In Tomcat7.0/lib directory I have (I have grouped them alphabetically so it doesn't make the list too long

RE: Upgrade to Tomcat 7 Issues

2013-08-09 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: Upgrade to Tomcat 7 Issues I don't think activation is something provided by servlet containers. I don't see it in a stock Tomcat, for example. It's not provided by Tomcat, but that's not the relevant point. The

RE: apache tomcat 8.0.0-rc1; /manager connection ciphers; NPE

2013-08-07 Thread Caldarale, Charles R
From: jieryn [mailto:jie...@gmail.com] Subject: Re: apache tomcat 8.0.0-rc1; /manager connection ciphers; NPE I'll answer more completely in the other no-web.xml NPE thread, but quickly: there's no actual requirement for web.xml Sorry, that's just wrong. There is no requirement for an

RE: apache tomcat 8.0.0-rc1; /manager 404; NPE

2013-08-07 Thread Caldarale, Charles R
From: jieryn [mailto:jie...@gmail.com] Subject: Re: apache tomcat 8.0.0-rc1; /manager 404; NPE so what is the point of keeping the global conf/web.xml.. To allow Tomcat to work. If we changed the name to conf/do_not_delete.xml, would that satisfy you? - Chuck THIS COMMUNICATION MAY

RE: Apache Tomcat 8.0.0-RC1 release vote started

2013-08-02 Thread Caldarale, Charles R
From: Michael-O [mailto:1983-01...@gmx.net] Subject: Re: Apache Tomcat 8.0.0-RC1 release vote started According to Apache's JIRA DBCP2 is still in the works whereas Tomcat JDBC Pool already works quite well. If so, I would favor the first option and make Tomcat JDBC Pool the default.

RE: Help about my problem

2013-08-02 Thread Caldarale, Charles R
From: Mehdi Yousefi [mailto:mmeh...@gmail.com] Subject: Help about my problem i have use Tom-Cat ver 6.0.10 It's Tomcat, not Tom-Cat. Version 6.0.10 is over six years old and should not be used by anyone these days. Doing so is irresponsible, given the number of bug fixes and security

RE: java.net.UnknownHostException: Failed to negotiate with a suitable domain controller for xxx

2013-08-01 Thread Caldarale, Charles R
From: Seema Patel [mailto:seema...@hotmail.com] Subject: java.net.UnknownHostException: Failed to negotiate with a suitable domain controller for xxx I am not sure if this is the right List to post this on This is the correct list, but... jcifs.http.NtlmHttpFilter Not supported:

RE: java.net.UnknownHostException: Failed to negotiate with a suitable domain controller for xxx

2013-08-01 Thread Caldarale, Charles R
From: Seema Patel [mailto:seema...@hotmail.com] Subject: RE: java.net.UnknownHostException: Failed to negotiate with a suitable domain controller for xxx When upgrading Tomcat from version 5.5 to 7, would I need to upgrade to version 6 first and then to 7 or can I go straight from 5.5 to

RE: Authentication from a REST service

2013-07-29 Thread Caldarale, Charles R
From: Martin O'Shea [mailto:app...@dsl.pipex.com] Subject: RE: Authentication from a REST service Sorry Chris, I'm not sure what I'm looking for here. Can you elaborate? Don't top-post; it makes the conversation impossible to follow. Step 1: read the security section of the Servlet spec.

RE: context problem

2013-07-24 Thread Caldarale, Charles R
From: Edward W. Rouse [mailto:ero...@comsquared.com] Subject: context problem IDWMClassLoader extends WebappClassLoader. I have been reading to docs to try and figure out how to get both the normal webapp base directories and the outside the base directories to be found. I suspect you

RE: IP based access

2013-07-16 Thread Caldarale, Charles R
From: Prakash, Shreyas [mailto:shreyas_prak...@gallup.com] Subject: Reg: IP based access Is it possible to restrict access/filter based on the IP address of the end user on a Servlet's mapping URL? If so, how? Please explain. I am aware of the fact that this can be achieved in Tomcat 7.

RE: [OT] Cannot cleanly undeploy a web application

2013-07-16 Thread Caldarale, Charles R
From: André Warnier [mailto:a...@ice-sa.com] Subject: Re: [OT] Cannot cleanly undeploy a web application What probably happens here, is that one level below the InputStream which holds the filehandle in Java, is some native file object which has the file open. The InputStream object is

RE: Query Response time for tomcat requests

2013-07-16 Thread Caldarale, Charles R
From: Harsimranjit singh Kler [mailto:simran...@gmail.com] Subject: Query Response time for tomcat requests I am using Apache tomcat 6.0.35 version Is http://version.is/ there any log which specify Query response time for each request on tomcat.I mean total time taken by tomcat to process

RE: Tomcat 7.0.27 graceful shutdown fails

2013-07-12 Thread Caldarale, Charles R
From: Prakash P [mailto:prakash@gmail.com] Subject: Tomcat 7.0.27 graceful shutdown fails When I stop the tomcat by calling the shutdown.sh script or sending SIGTERM signal to the java process it's throwing the following exception and the shutdown get hung. And a thread dump shows?

RE: Moving Tomcat to work externally.

2013-07-11 Thread Caldarale, Charles R
From: john Matlock [mailto:johndmatl...@gmail.com] Subject: Re: Moving Tomcat to work externally. Remove the ROOT directory from Tomcat's webapps directory, replacing it with your webapp renamed to ROOT.war (or, if it's already an expanded .war file, put it in the ROOT directory under

RE: Application won't start

2013-07-11 Thread Caldarale, Charles R
From: Thomas Edison [mailto:justdoit.thomas.edi...@gmail.com] Subject: Application won't start *Is there a way I can check the log to see what went wrong?* I checked the log file in CATALINA_BASE, but it didn't tell much. There should be several log files in Tomcat's logs directory; you'll

RE: Collision on port 8005 -- what to do about it?

2013-07-10 Thread Caldarale, Charles R
From: James H. H. Lampert [mailto:jam...@touchtonecorp.com] Subject: Re: Collision on port 8005 -- what to do about it? We ended up changing the port number. But do we have to change it anywhere else, for shutdown to work properly? No, the startup and shutdown scripts both use the

RE: Moving Tomcat to work externally.

2013-07-10 Thread Caldarale, Charles R
From: john Matlock [mailto:johndmatl...@gmail.com] Subject: Moving Tomcat to work externally. Following instructions found in various places I added the following to the server.xml file and restarted Tomcat: If you followed something that said to put a Context element in server.xml, you

RE: How to handle CONNECT ... HTTP 1.1 400 in localhost_access_log

2013-07-09 Thread Caldarale, Charles R
From: Howard W. Smith, Jr. [mailto:smithh032...@gmail.com] Subject: Re: How to handle CONNECT ... HTTP 1.1 400 in localhost_access_log why would the same IP address be hitting my server when 400 is the response? and they will continue attempting these CONNECT... requests until they get a

RE: java.lang.NoClassDefFoundError

2013-07-09 Thread Caldarale, Charles R
From: Thomas Edison [mailto:justdoit.thomas.edi...@gmail.com] Subject: java.lang.NoClassDefFoundError *This is what I see when I start the webhdfs service:* Using CLASSPATH: /usr/share/tomcat7/bin/bootstrap.jar Whatever script you're using to start Tomcat has a serious error in it:

RE: How to handle CONNECT ... HTTP 1.1 400 in localhost_access_log

2013-07-08 Thread Caldarale, Charles R
From: Howard W. Smith, Jr. [mailto:smithh032...@gmail.com] Subject: How to handle CONNECT ... HTTP 1.1 400 in localhost_access_log 183.60.48.25 - - [08/Jul/2013:15:15:26 -0400] CONNECT tcpconn2.tencent.com:443 HTTP/1.1 400 - Any advise on how to handle these requests (if necessary) and/or

RE: Tomcat 7.0.27 on Mac OSX Lion -- Is it Possible to use Tomcat Parallel Deployment when the Context Name is Different than the WAR Name

2013-07-01 Thread Caldarale, Charles R
From: Mark Thomas [mailto:ma...@apache.org] Subject: Re: Tomcat 7.0.27 on Mac OSX Lion -- Is it Possible to use Tomcat Parallel Deployment when the Context Name is Different than the WAR Name Assuming the file above is called website1##001.xml then you should be able to add

RE: Tomcat 7.0.27 on Mac OSX Lion -- Is it Possible to use Tomcat Parallel Deployment when the Context Name is Different than the WAR Name

2013-07-01 Thread Caldarale, Charles R
From: Majors, Jeremy [mailto:jmaj...@tribune.com] Subject: Re: Tomcat 7.0.27 on Mac OSX Lion -- Is it Possible to use Tomcat Parallel Deployment when the Context Name is Different than the WAR Name It appears to be working after I added the information provided by Mark (even with the path

RE: Unable to start running Tomcat startup script

2013-07-01 Thread Caldarale, Charles R
From: Sunil Dath [mailto:sunild...@gmail.com] Subject: Unable to start running Tomcat startup script set JAVA_HOME=%ProgramFiles%\Java\jdk1.7.0_25 set JRE_HOME=%ProgramFiles%\Java\jre7 In general, you should set just one or the other of the above, not both. exit /b 0 The exit command

RE: Tomcat 7 - Getting tld scan error when i compile jsp using Ant task.

2013-06-27 Thread Caldarale, Charles R
From: Manikandan [mailto:manikanda...@gmail.com] Subject: Tomcat 7 - Getting tld scan error when i compile jsp using Ant task. Got the below error It's not an error; note the use of INFO in the message. Can some one throw lights to resolve this issue. It's simply providing information on

RE: Local VisualVM connection to Tomcat

2013-06-27 Thread Caldarale, Charles R
From: honyk [mailto:j.tosov...@email.cz] Subject: Local VisualVM connection to Tomcat It is not needed if you are going to monitor it locally, using the same user that Tomcat runs with. The key part of the above is same user. But there is no further description for that simpler (local)

RE: Local VisualVM connection to Tomcat

2013-06-27 Thread Caldarale, Charles R
From: honyk [mailto:j.tosov...@email.cz] Subject: RE: Local VisualVM connection to Tomcat Now I've found this interesting article: https://blogs.oracle.com/nbprofiler/entry/monitoring_java_processes_running_as Note that the article is over four years old. One of its key steps doesn't work

RE: Tomcat deployment webapps and the whole stew

2013-06-27 Thread Caldarale, Charles R
From: Narahari 'n' Savitha [mailto:savith...@gmail.com] Subject: Re: Tomcat deployment webapps and the whole stew 22:18:34,427 ERROR [ConfigServlet] com.adp.rev.config.ConfigServlet.init(): Error trying to read file [null]. Exception = [java.lang.NullPointerException]

RE: Strange tomcat error and running out of file handles

2013-06-24 Thread Caldarale, Charles R
From: Daniel Mikusa [mailto:dmik...@gopivotal.com] Subject: Re: Strange tomcat error and running out of file handles SEVERE: Unable to process request in NioReceiver java.lang.ThreadDeath at java.lang.Thread.stop(Thread.java:758) at

RE: Http.noHttpResponseException

2013-06-19 Thread Caldarale, Charles R
From: André Warnier [mailto:a...@ice-sa.com] Subject: Re: Http.noHttpResponseException Manuel LeNormand wrote: On load testinf for my Solr cloud servers on tomcat 7 i get after a while an exception caused by org.apache.http.noHttpResponseException: the target server failed to respond.

RE: Class cast exception when starting tomcat 7.0.1

2013-06-13 Thread Caldarale, Charles R
From: Jane Muse [mailto:jm...@rocketsoftware.com] Subject: RE: Class cast exception when starting tomcat 7.0.1 Who says I was using a 3 year old unreleased level? Your subject line. I tried an easier migration - Tomcat 6.0.18 to 7.0.10. The logic of that completely escapes me. - Chuck

RE: Class cast exception when starting tomcat 7.0.1

2013-06-13 Thread Caldarale, Charles R
From: Jane Muse [mailto:jm...@rocketsoftware.com] Subject: RE: Class cast exception when starting tomcat 7.0.1 Just saying, I wasn't using a 3 year unreleased version. Maybe a 3 year version, yes. Here's my original email: I'm getting a class cast exception when starting up tomcat 7.0.1.

RE: Class cast exception when starting tomcat 7.0.1

2013-06-13 Thread Caldarale, Charles R
From: Jane Muse [mailto:jm...@rocketsoftware.com] Subject: RE: Class cast exception when starting tomcat 7.0.1 In the archives I thought the only unreleased versions would be specified beta. Please let me know if this is not the case. No, the description of alpha, beta, and stable as the

RE: Class cast exception when starting tomcat 7.0.1

2013-06-13 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: Class cast exception when starting tomcat 7.0.1 I'll admit it's not clear from the version number which versions are beta, released, etc. You have to look at the ChangeLog: It's easier to look in the archives if

RE: forward request by changing the port in request url

2013-06-13 Thread Caldarale, Charles R
From: Anil Goyal -X (anigoyal - Aricent Technologies at Cisco) [mailto:anigo...@cisco.com] Subject: forward request by changing the port in request url i have application abc.war deployed in webapps_new service which is running on port 8081. This application is not there in webapps. You

RE: forward request by changing the port in request url

2013-06-13 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: forward request by changing the port in request url Once you have a ROOT webapp, you can deploy the standard URL rewrite filter therein to send the request anywhere you want: http://tuckey.org/urlrewrite/ I

RE: Class cast exception when starting tomcat 7.0.1

2013-06-13 Thread Caldarale, Charles R
From: Jane Muse [mailto:jm...@rocketsoftware.com] Subject: RE: Class cast exception when starting tomcat 7.0.1 I had catalina.jar in WEB-INF/lib. Very, very bad move. It's needed because we have an implementation of Realm to store an encrypted tomcat password users enter in the webapp.

RE: Class cast exception when starting tomcat 7.0.1

2013-06-12 Thread Caldarale, Charles R
From: Jane Muse [mailto:jm...@rocketsoftware.com] Subject: RE: Class cast exception when starting tomcat 7.0.1 Problem was solved by removing an old catalina.jar for WEB-INF/lib. The fact that you had a Tomcat-supplied jar in WEB-INF/lib is even scarier than using a three-year-old

RE: Illegal access: this web application instance has been stopped already and NoClassDefFoundError

2013-06-11 Thread Caldarale, Charles R
From: ruxing bao [mailto:brxonl...@hotmail.com] Subject: RE: Illegal access: this web application instance has been stopped already and NoClassDefFoundError Zookeeper jar had been under CLASSPATH. Do not ever use the CLASSPATH environment variable. In a Tomcat environment, it is

RE: SSL Issue- Support required.

2013-06-11 Thread Caldarale, Charles R
From: B S, Veena [mailto:veena@hp.com] Subject: SSL Issue- Support required. Tomcat version: 6.0 The SSL configuration is done as per the standard SSL set up link http://tomcat.apache.org/tomcat-5.5-doc/ssl-howto.html . If you're using Tomcat 6, you have no reason to look at Tomcat

RE: undefined reference to `TLSv1_1_client_method

2013-06-11 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: undefined reference to `TLSv1_1_client_method by launching this command: ./configure --prefix=/usr/local/apache2 --enable-so --enable-mods-shared=all --with-included-apr

RE: Class cast exception when starting tomcat 7.0.1

2013-06-11 Thread Caldarale, Charles R
From: Jane Muse [mailto:jm...@rocketsoftware.com] Subject: Class cast exception when starting tomcat 7.0.1 I'm getting a class cast exception when starting up tomcat 7.0.1 You can't be serious. That version was never released, and would be almost three years old if it had been. Use the

RE: OOME issue in Tomcat 6.0.18(with SSL)

2013-06-11 Thread Caldarale, Charles R
From: Chirag Dewan [mailto:chirag.dewa...@yahoo.in] Subject: OOME issue in Tomcat 6.0.18(with SSL) I am using Embedded Tomcat 6.0.18. Which is nearly five years old. Many, many fixes (including serious security-related ones) have gone in since that version was released; you should see if

RE: Tomcat: one user per application

2013-06-10 Thread Caldarale, Charles R
From: Outlou, Youness [mailto:youness.out...@cgi.com] Subject: RE: Tomcat: one user per application Can you give me the estimated date of end of support for TomCat 6 and 7. Can you please not hijack threads and learn how to spell Tomcat? Don't simply reply to any random message with a

RE: Tomcat and PostgreeSQL

2013-06-06 Thread Caldarale, Charles R
From: Hector Del Mestre [mailto:hectordelmes...@gmail.com] Subject: Tomcat and PostgreeSQL The application was done with AppFuse architecture originally utlizando MySQL, but issues like licensing and client wants to use PostgreSQL. And that is where I'm stuck, because Tomcat (or rather the

RE: How to get SSL connection information from Apache HTTPD over AJP?

2013-06-06 Thread Caldarale, Charles R
From: Omari Stephens [mailto:x...@google.com] Subject: Re: How to get SSL connection information from Apache HTTPD over AJP? [re-adding mailing list] Martin: There's a reason everyone ignores Martin Gainty's postings: they are nearly always irrelevant, or worse. Consequently, he's taken

RE: Tomcat 6 and Windows Service

2013-06-05 Thread Caldarale, Charles R
From: Urkens Jean-Pierre [mailto:jean-pierre.urk...@devoteam.com] Subject: RE: Tomcat 6 and Windows Service Try creating a file $TOMCAT_HOME/bin/setenv.bat and include following line in it: The .bat files are not used when running Tomcat as a service, so the above is pointless. - Chuck

RE: Tomcat 6 and Windows Service

2013-06-05 Thread Caldarale, Charles R
From: walter.heesterm...@toyota-europe.com [mailto:walter.heesterm...@toyota-europe.com] Subject: RE: Tomcat 6 and Windows Service I can set the following Java options -Dcom.sun.management.jmxremote.port=10150 The stop using shudown class is org.apache.catalina.startup.Bootstrap

RE: Tomcat 6 and Windows Service

2013-06-03 Thread Caldarale, Charles R
From: Jeffrey Janner [mailto:jeffrey.jan...@polydyne.com] Subject: RE: Tomcat 6 and Windows Service You are missing one line from your configuration. At the top you need: -Dcom.sun.management.jmxremote That hasn't been needed for many years (if ever). Setting any of the

RE: WebappClassLoaders pinned in memory by java.security.ProtectionDomain objects

2013-05-31 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: WebappClassLoaders pinned in memory by java.security.ProtectionDomain objects Using MySQL Connector/J 5.1.24 (important later) Where is the JDBC jar located? Is the observed behavior different if it's in tomcat/lib

RE: Is there a way to make manager applications be first ones loaded?

2013-05-28 Thread Caldarale, Charles R
From: Nick Williams [mailto:nicho...@nicholaswilliams.net] Subject: Is there a way to make manager applications be first ones loaded? The FileNotFoundExceptions in our Ant build happen when the Ant task successfully contacts Tomcat but Tomcat returns a 404 for the manager because that

RE: NPE in coyote InternalNioOutputBuffer

2013-05-27 Thread Caldarale, Charles R
From: Peter Cipov [mailto:pci...@kerio.com] Subject: NPE in coyote InternalNioOutputBuffer Did I miss some curtial lesson about flushing async responses ? By the way that NPE should never occur - Is it a BUG ? I am using Tomcat 7.0.28 (current in debian 7.0 Wheezy) That level is almost

RE: Doubt about Qmail

2013-05-27 Thread Caldarale, Charles R
From: Gabriel Huerta Araujo [mailto:huert...@hildebrando.com] Subject: Doubt about Qmail I received a message indicating that We've noticed that it's been a week since you read your Qmail messages. Your colleagues might be confused and wait for your answers How can I answer to tell those

RE: Exeptions after upgrading to tomcat 7

2013-05-26 Thread Caldarale, Charles R
From: Leon Rosenberg [mailto:rosenberg.l...@gmail.com] Subject: Re: Exeptions after upgrading to tomcat 7 Remove following lines from server.xml: !-- Prevent memory leaks due to use of particular java/javax APIs-- Listener

RE: Exeptions after upgrading to tomcat 7

2013-05-26 Thread Caldarale, Charles R
From: Leon Rosenberg [mailto:rosenberg.l...@gmail.com] Subject: Re: Exeptions after upgrading to tomcat 7 First we are talking about a ThreadLocal, not Thread. Read the logs again; besides the ThreadLocal abuse, there are two threads left lying around: SEVERE: The web application [/solr]

RE: Follow-up: Possible false-postive with JreMemoryLeakPreventionListener and Tomcat's JDBC Pool and OracleTimeoutPollingThread

2013-05-23 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: Follow-up: Possible false-postive with JreMemoryLeakPreventionListener and Tomcat's JDBC Pool and OracleTimeoutPollingThread Thanks for the pedantry: I was in fact ignoring the difference between the system and

RE: Follow-up: Possible false-postive with JreMemoryLeakPreventionListener and Tomcat's JDBC Pool and OracleTimeoutPollingThread

2013-05-23 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: Follow-up: Possible false-postive with JreMemoryLeakPreventionListener and Tomcat's JDBC Pool and OracleTimeoutPollingThread While I haven't exactly implemented my own JVM or anything like that, I have... I

RE: Follow-up: Possible false-postive with JreMemoryLeakPreventionListener and Tomcat's JDBC Pool and OracleTimeoutPollingThread

2013-05-22 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: Follow-up: Possible false-postive with JreMemoryLeakPreventionListener and Tomcat's JDBC Pool and OracleTimeoutPollingThread I suspect that the DriverManager will always be loaded by the boot ClassLoader, since

RE: Where is a good SSL/TLS

2013-05-21 Thread Caldarale, Charles R
From: Smith, Burton [mailto:burton.sm...@williams.com] Subject: Where is a good SSL/TLS I've been trying to figure out how to compile Apache 2.2 So wouldn't it be more effective to ask on the httpd mailing list rather than the Tomcat one? - Chuck THIS COMMUNICATION MAY CONTAIN

RE: Performance Issue while upgrading from Embedded Tomcat 6 to Tomcat 7

2013-05-21 Thread Caldarale, Charles R
From: Chirag Dewan [mailto:chirag.dewa...@yahoo.in] Subject: Re: Performance Issue while upgrading from Embedded Tomcat 6 to Tomcat 7 Well I tested a sample html page with Tomcat 6.0.18 and 7.0.30 on Solaris x86 server. The req/sec were almost the same for both, but CPU utilization for

RE: Apache Tomcat service has been shutting down/stopping randomly.

2013-05-20 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: Apache Tomcat service has been shutting down/stopping randomly. Third, let's get some more information about the tcnative thing, as it probably truly represents a bug in tcnative. And start a new thread for that

RE: LOG4J2-223: IllegalStateException thrown during Tomcat shutdown (memory leak, it looks like)

2013-05-19 Thread Caldarale, Charles R
From: Nick Williams [mailto:nicho...@nicholaswilliams.net] Subject: Re: LOG4J2-223: IllegalStateException thrown during Tomcat shutdown (memory leak, it looks like) Log4j 1 never required a listener to be configured to be shut down properly when an application is undeployed. What bearing

RE: Apache Tomcat service has been shutting down/stopping randomly.

2013-05-18 Thread Caldarale, Charles R
From: James Snider [mailto:james.sni...@hbcs.org] Subject: RE: Apache Tomcat service has been shutting down/stopping randomly. We then moved back the Commons directory and Shared directory. Here is a list of the .jar files contained in the common directory we copied back: That's a fatal

RE: Apache Tomcat Native library was not found on the java.library.path

2013-05-15 Thread Caldarale, Charles R
From: msyber [mailto:msy...@gmail.com] Subject: Re: Apache Tomcat Native library was not found on the java.library.path Don't top post - it's obnoxious and makes the conversation much harder to follow. Tomcat: 6.0.13 Sadly out of date - over six years old. JDK: 1.5.0_22 Not supported.

RE: TomCat Request Processing

2013-05-14 Thread Caldarale, Charles R
From: yogesh hingmire [mailto:yogesh.hingm...@gmail.com] Subject: Re: TomCat Request Processing Sure, i tried looking at the sequence diagram on the apache tomcat site, was not able to understand from there. Basically what i want to understand is, how does the connector handle multiple

<    1   2   3   4   5   6   7   8   9   10   >