Re: Tomcat 9: Java 11 to Java 17

2024-06-10 Thread Paul Leo
I could be wrong, but I don't think you need jakarta for Tomcat 9.  You need it for TomEE 9 and Tomcat 10.  But please someone verify. On 6/10/2024 1:44 PM, Ryan Esch wrote: Hi folks,I have a webapp running Apache Tomcat 9.0.67 with Java 11, using JASPIC for authentication. For reference,

Re: Issue Migrating servlets to 10.1

2023-11-21 Thread Paul Leo
I believe you can make use of a migration tool.Apache Tomcat® - Migration Guide - Tomcat 10.0.xtomcat.apache.orgfrom tomcat 9 to tomcat 10.0Specification APIsApache Tomcat 10 supports the Jakarta Servlet 5.0, Jakarta Server Pages 3.0, Jakarta _expression_ Language 4.0, JakartaWebSocket 2.0 and

Re: Tomcat 9.0.81 Degraded ssl performance

2023-10-11 Thread Paul Zepernick
Thank you Chuck Paul From: Chuck Caldarale Sent: Wednesday, October 11, 2023 8:54:59 PM To: Tomcat Users List Subject: Re: Tomcat 9.0.81 Degraded ssl performance NOTICE: This email originated from outside of the organization. Do not click links or open

Tomcat 9.0.81 Degraded ssl performance

2023-10-11 Thread Paul Zepernick
[org.apache.tomcat.util.net.SecureNioChannel@25cfb477:java.nio.channels.SocketChannel[connected local=/10.32.68.11:443 remote=/10.32.73.114:52679]] with status [ERROR] Does anyone have any suggestions on the possible problem, additional logging, or configuration changes? Thanks Paul R Zepernick

HTTP 400 from tcp half-open health checks

2023-05-25 Thread Paul Baines
Hello! We upgraded a Windows Tomcat instance from 8.5.41 to 8.5.84. This Tomcat instance is behind a load balancer. Since the upgrade the Tomcat access log (AccessLogValve) has an "empty" entry with response 400 for every TCP half-open health check from the load balancer. Because the health

Re: Issue with catalina.out not being generated (RHEL 7.9, tomcat 9.0.63)

2022-08-11 Thread Paul Chauvet
hands as to find out what's wrong . I will look at the daemon startup method you list though - thank you! Paul Chauvet, CISSP Information Security Officer State University of New York at New Paltz chauv...@newpaltz.edu [cid:aaa5e02a-2ded-4434-b7d6-c140c723291e] Keep on a lookout

Re: Issue with catalina.out not being generated (RHEL 7.9, tomcat 9.0.63)

2022-08-11 Thread Paul Chauvet
a non-New Paltz email server. Treat message, links, and attachments with extra caution. Paul, On 8/11/22 13:03, Paul Chauvet wrote: > Hi Noelette, > > Thanks for the reponse! > > It logs to catalina--MM-DD.log, localhost.YY-MM-DD.log, > localhost_access_log.-MM-DD.tx

Re: Issue with catalina.out not being generated (RHEL 7.9, tomcat 9.0.63)

2022-08-11 Thread Paul Chauvet
with catalina.out not being generated (RHEL 7.9, tomcat 9.0.63) CAUTION: Message from a non-New Paltz email server. Treat message, links, and attachments with extra caution. We use systemd with jsvc and our tomcat instances write to $CATALINA_BASE/logs by default. On Thu, Aug 11, 2022 at 10:10 AM Paul

Issue with catalina.out not being generated (RHEL 7.9, tomcat 9.0.63)

2022-08-11 Thread Paul Chauvet
[Install] WantedBy=multi-user.target Paul Chauvet, CISSP Information Security Officer State University of New York at New Paltz chauv...@newpaltz.edu

AW: AW: AW: AW: maxConnections behaving unexpected - no connection gets ever refused

2021-05-20 Thread Paul P Wolf
> OK, that looks like clients with a connection timeout of 5s. Correct. I think I forgot to mention, that I set the connection timeout of the curl instances to 5s. I didn't set the max timeout > >> Connection refusal is entirely under the control of the OS and will > >> be driven largely by the

AW: AW: AW: maxConnections behaving unexpected - no connection gets ever refused

2021-05-19 Thread Paul P Wolf
sorry, my message was misformated, so here again with hopefully better formatting: > The clients timeout because they spend more than timeout in the > acceptCount/backlog queue waiting for Tomcat to call Socket.accept() Ok, so you are stating, that clients timeout while their requests are in

AW: AW: AW: maxConnections behaving unexpected - no connection gets ever refused

2021-05-19 Thread Paul P Wolf
> The clients timeout because they spend more than timeout in the > acceptCount/backlog queue waiting for Tomcat to call Socket.accept() Ok, so you are stating, that clients timeout while their requests are in the acceptCount/backlog. This is not what I am seeing. See below. > So we have: >

AW: AW: maxConnections behaving unexpected - no connection gets ever refused

2021-05-19 Thread Paul P Wolf
Thank you Thomas. I carefully read your explanation. It makes sense to me and is completely different from what I understood up until this point. With this new understanding, the problem still persists. Please let me rephrase my issues in the light of what I just learned. To summarize: -

AW: maxConnections behaving unexpected - no connection gets ever refused

2021-05-19 Thread Paul P Wolf
> Paul, Thanks for the reply. I am not really much further with my main issue, but I hope this reply provides more information to you, so you can either clear up my confusion or see how tomcat doesn't work as intended in my case. > On 5/18/21 07:44, Paul P Wolf wrote: > > Hi,

maxConnections behaving unexpected - no connection gets ever refused

2021-05-18 Thread Paul P Wolf
+ acceptCount + maxThreads)? 6. What is the difference between requests in the accept queue and requests outside the queue, but still within the maxConnections limit? Any insight would be appreciated. If there is anything in here, that I should report as bug, please let me know. I a

Re: Weirdest Tomcat Behavior Ever?

2020-11-13 Thread Paul Carter-Brown
-Original Message- > > From: Paul Carter-Brown > > Sent: Friday, October 16, 2020 6:11 AM > > To: Tomcat Users List > > Subject: Re: Weirdest Tomcat Behavior Ever? > > > > Hi Eric, > > > > These weird situations are sometimes best looked at

Re: Weirdest Tomcat Behavior Ever?

2020-10-16 Thread Paul Carter-Brown
insightful to see what is actually going on between the JVM and Kernel. Paul On Fri, Oct 16, 2020 at 12:16 PM Mark Thomas wrote: > On 16/10/2020 10:05, Eric Robinson wrote: > > Hi Mark -- > > > > Those are great questions. See answers below. > > > > > >>

Re: Request for a tip with NoClassDefFoundError

2020-09-23 Thread Paul Carter-Brown
String someString = doSomething(); private static String doSomething() { // access some server . If network is down an exception would be thrown throw new RuntimeException(); } } The above code would cause a NoClassDefFoundError whenever someone tries to use MyClass. Paul On Wed, Sep 23, 2020

Re: Implications of setting createDirs attribute on host declarations to false in Tomcat

2020-09-01 Thread Paul
mcat docs as well (I'd be willing to create a PR) TIA, Paul On 8/31/2020 5:24 PM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Paul, On 8/31/20 05:36, Paul wrote: Hello, When running Tomcat in a Docker container as non-root, I'm getting an error entry in the

Implications of setting createDirs attribute on host declarations to false in Tomcat

2020-08-31 Thread Paul
directory, which comes with its on context.xml in /webapps/ROOT/META-INF/context.xml TIA Paul -- This email has been checked for viruses by AVG. https://www.avg.com

Re: Tomcat Handling close_waits

2020-08-16 Thread Paul Carter-Brown
Hi Norbert, The TCP socket states and timers are managed by the underlying OS and not by Tomcat. Can you paste a netstat -an result so I can see what you mean. Also, is the client using HTTP 1.1 with keep-alive or not? What kind of traffic is this? Paul On Sun, Aug 16, 2020 at 7:16 PM Norbert

Re: Wrong timezone in Date and Last-Modified-Headers

2020-06-10 Thread Paul Carter-Brown
At runtime, any code can call TimeZone.setDefault to change the timezone of the JVM. I'd suggest logging TimeZone.getDefault().getDisplayName(Locale.ENGLISH); intermittently and seeing if some code somewhere is changing the timezone. Could be in any library... Paul On Wed, Jun 10, 2020 at 2

Re: Tomcat 9.0.0 multiple thread issue

2020-06-09 Thread Paul Carter-Brown
I assume a servlet request is kicking off this process? If this is correct then are you 100% sure that something is not calling the servlet more than once? Perhaps a retry after a timeout or something? Turn your access log on and look at what requests are coming in to the server Paul On Tue

Re: Performance test with Tomcat 9 shows increased cpu/disk usage because of repeated opening/closing of jars in WEB-INF/lib

2019-10-09 Thread Paul Carter-Brown
Hi Anthony Have you turned debug logging on to see what it is picking up as modified? On Wed, 09 Oct 2019, 22:24 Rhuberg,Anthony, wrote: > Thanks for your responses. > > I understand that re-reading the static files is not optimal, but how does > reading files from the jar affect them being

Re: Add jar to catalina base / tomcat instance classpath (Tomcat 9)

2019-09-04 Thread Paul Carter-Brown
Can you not just put the jar in the /lib folder of tomcat On Wed, Sep 4, 2019 at 5:17 PM Stephane Passignat wrote: > I may misread the catalina.sh (else instead of elif). > > I try to add a setenv.sh in the catalina_home. > > -Original Message- > From: Stephane Passignat

Re: Tomcat Server Using 100% CPU

2019-08-08 Thread Paul Carter-Brown
Please post a jstack of the pid 10 seconds apart. That will reveal all. On Thu, 08 Aug 2019, 20:22 Coty Sutherland, wrote: > I'd suggest writing a small script to loop about 10 times and capture top > and thread dumps with jstack at the same time, then wait a few seconds then > repeat. After

Re: java.lang.NoClassDefFoundError: Could not initialize class net.sf.ehcache.Element

2019-07-10 Thread Paul Carter-Brown
NoClassDefFoundError is not the same as ClassNotFoundException Typically a NoClassDefFoundError is due to a class failing its static initialisation when first loaded by the classloader. Can you check in your logs for any prior errors (even at bootup) relating to class failing to be loaded Paul

Re: Initiating httpservletrequest from inside Tomcat / TomEE

2019-05-06 Thread Paul Carter-Brown
appropriate context for the request to tomcat. I don't know off hand > where in the tomcat code this cut point can be found. > > Is this a performance issue, or are you building a proxy? > > What is the problem you're trying to solve? > > On 5/6/19, Paul Carter-Brown wrote: &g

Re: Initiating httpservletrequest from inside Tomcat / TomEE

2019-05-06 Thread Paul Carter-Brown
ote: > For reference, I did find this after searching "calling a servlet > programmatically": > https://docs.oracle.com/cd/E19146-01/819-2634/abxbn/index.html > > On 5/6/19, Paul Carter-Brown wrote: > > I think we are completely missing each other. Forget sockets - t

Re: Initiating httpservletrequest from inside Tomcat / TomEE

2019-05-06 Thread Paul Carter-Brown
that without going out and back in on TCP? On Mon, May 6, 2019 at 5:14 PM John Dale wrote: > Sockets are an implementation of TCP/UDP inherently. > > Perhaps a mountaintop signal fire? > > ;) > > John > > > On 5/6/19, Paul Carter-Brown wrote: > > lol on the Sema

Re: Initiating httpservletrequest from inside Tomcat / TomEE

2019-05-06 Thread Paul Carter-Brown
t; If these don't work-out for you, rather than using .NET, PHP, Python, > or some other Java facsimile at best, I recommend using the semaphore > telegraph: > https://en.wikipedia.org/wiki/Semaphore_telegraph > > Sincerely, > > John > DB2DOM > > On 5/6/19,

Re: Initiating httpservletrequest from inside Tomcat / TomEE

2019-05-06 Thread Paul Carter-Brown
an http servlet response (or similar) back. I have this working by calling into localhost but ideally want to skip the trombone out and back in. Have you got any basic code examples? Paul On Tue, Apr 30, 2019 at 5:27 PM John Dale wrote: > Another thought .. you can do some request dispatch

Initiating httpservletrequest from inside Tomcat / TomEE

2019-04-29 Thread Paul Carter-Brown
this is more a tomcat question than tomee but have sent to both groups just in case. Thanks for any insights. Paul

RE: Scan Finding Error! (UNCLASSIFIED)

2018-12-17 Thread Lueders, Paul T CIV USARMY NGIC (US)
CLASSIFICATION: UNCLASSIFIED Take a look at the error page section of the web.xml. You may need to edit this file. Paul -Original Message- From: danyaal.ha...@bcbssc.com [mailto:danyaal.ha...@bcbssc.com] Sent: Monday, December 17, 2018 8:56 AM To: users@tomcat.apache.org Subject

Why move to tomcat9 (UNCLASSIFIED)

2018-08-29 Thread Lueders, Paul T CIV USARMY NGIC (US)
CLASSIFICATION: UNCLASSIFIED I would like to migrate from tomcat 7.0.90 to the latest version of tomcat9. Is there a document that lists the benefits of tomcat9 and the differences between tomcat7 and tomcat9 Thanks Paul CLASSIFICATION: UNCLASSIFIED

oracle 12c driver (UNCLASSIFIED)

2018-06-20 Thread Lueders, Paul T CIV USARMY NGIC (US)
to watch the database connections. Thanks a lot Paul CLASSIFICATION: UNCLASSIFIED - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: Using existing LetsEncrypt certs with tomcat

2018-01-06 Thread Paul Beard
> On Jan 6, 2018, at 10:49 AM, Martynas Jusevičius > wrote: > > see if this Docker setup could help: > https://github.com/AtomGraph/letsencrypt-tomcat > > > I also have nginx config that works with it. Well, it was

Re: Using existing LetsEncrypt certs with tomcat

2018-01-06 Thread Paul Beard
> On Jan 4, 2018, at 1:53 AM, Mark Thomas wrote: > > This might help. > > https://www.youtube.com/watch?v=I6TbMqH9WFg > It was, along with the script (after a little search and replace on / and \). I have just walked through

Re: Using existing LetsEncrypt certs with tomcat

2018-01-03 Thread Paul Beard
> On Jan 3, 2018, at 11:33 AM, Christopher Schultz > wrote: > > In there, I detail how to put everything together. There is a script > that builds a Java keystore that Tomcat can use. That script > demonstrates how to take an existing key+certificate+chain,

Re: Using existing LetsEncrypt certs with tomcat

2018-01-03 Thread Paul Beard
--- > Hash: SHA256 > > Paul, > >> On 12/30/17 8:35 PM, Paul Beard wrote: >> I have a freshly installed and running tomcat7 instance with nginx >> but I would like to use the signed cert that I use with nginx for >> tomcat as well. I can’t make out how that

Using existing LetsEncrypt certs with tomcat

2017-12-30 Thread Paul Beard
I have a freshly installed and running tomcat7 instance with nginx but I would like to use the signed cert that I use with nginx for tomcat as well. I can’t make out how that works. Lots of HOWTOs on getting a LetsEncrypt cert but not about using an existing one. It looks like something to do

Apache tomcat 7.0.82 RFC issue (UNCLASSIFIED)

2017-12-11 Thread Lueders, Paul T CIV USARMY NGIC (US)
this in the tomcat configuration files? Thanks a lot, Paul Lueders CLASSIFICATION: UNCLASSIFIED - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Tomcat 8.5 justification (UNCLASSIFIED)

2017-11-16 Thread Lueders, Paul T CIV USARMY NGIC (US)
CLASSIFICATION: UNCLASSIFIED I have been tasked to migrate our apps to tomcat 8.5. But first I need to convince management that it is a good idea. Does anyone have any documents that state the benefits of using tomcat 8.5? Thanks a lot, Paul CLASSIFICATION: UNCLASSIFIED

Upgrade from tomcat 7 to tomcat 8.5 (UNCLASSIFIED)

2017-11-07 Thread Lueders, Paul T CIV USARMY NGIC (US)
CLASSIFICATION: UNCLASSIFIED I have been tasked with determining what we should use as a web server in the future. We are currently using tomcat 7 and I thought that it might be good to migrate to version 8.5. Is the change possible and is it worth it? Thanks a lot, Paul Lueders0

Tomcat7 EOL (UNCLASSIFIED)

2017-11-06 Thread Lueders, Paul T CIV USARMY NGIC (US)
CLASSIFICATION: UNCLASSIFIED I am currently using tomcat7 and would like to know when this product will be EOL? Thanks Paul Lueders CLASSIFICATION: UNCLASSIFIED smime.p7s Description: S/MIME cryptographic signature

Re: Tomcat managed server

2017-06-30 Thread Subhro Paul
Thanks & Regards Subhro Paul Tata Consultancy Services Cell:- +919051415167 Mailto: subhro.p...@tcs.com Website: http://www.tcs.com Experience certainty. IT Services Business Solutions Consul

Re: Tomcat managed server

2017-06-30 Thread Subhro Paul
/17 11:57 AM, Subhro Paul wrote: > Can you tell me if we can create manged server in tomcat like we > can do in Weblogic server? > > I have Googled that and found information which is about setting > up different tomcat instances but not the managed server which we > can do in Weblog

Tomcat managed server

2017-06-29 Thread Subhro Paul
Hi All, Can you tell me if we can create manged server in tomcat like we can do in Weblogic server? I have Googled that and found information which is about setting up different tomcat instances but not the managed server which we can do in Weblogic. Thanks & Regards, Subhro

Tomcat 7 installation on Sun Solaris 10

2017-03-10 Thread Subhro Paul
Hi All, We need to install tomcat 7.0.68 or higher version on Sun Solaris 10. Can you let me know if there is any version compatibility matrix for Tomcat 7 ? Thanks & Regards Subhro Paul Tata Consultancy Services Website: http://www.tcs

Re: [SECURITY] CVE-2016-6797 Apache Tomcat Unrestricted Access to Global Resources

2016-11-01 Thread R Paul
Excellent mark..thankyou..i am just trying to learn as much as i can and that gives me so good data to evaluate paths of understanding... look forward to communicating again.. rich On Tue, Nov 1, 2016 at 4:30 PM, Mark Thomas <ma...@apache.org> wrote: > On 01/11/2016 19:56, R Paul wrot

Re: [SECURITY] CVE-2016-6797 Apache Tomcat Unrestricted Access to Global Resources

2016-11-01 Thread R Paul
Hi Mark met you at pivotal...in toronto.. i have been watching these forums for some time..and just seeing the quantity of emails are these people experiencing a normal number of issues with gettting tomacat to work with their software? Can you catergorize some of those issues to me..as student

Re: No binary distribution for mod_jk?

2016-07-25 Thread Paul Roubekas
On 7/25/2016 3:45 PM, Mark Eggers wrote: > On 7/25/2016 12:42 PM, Mark Eggers wrote: >> I'm going to do a bit of trimming here: >> >> On 7/25/2016 7:34 AM, Paul Roubekas wrote: >> >>>>>> # # Add this before your first ProxyPass # However, after your

Re: No binary distribution for mod_jk?

2016-07-25 Thread Paul Roubekas
On 7/24/2016 11:33 PM, Mark Eggers wrote: > On 7/24/2016 5:10 PM, Paul Roubekas wrote: >> On 7/24/2016 5:20 PM, Mark Eggers wrote: >>> On 7/24/2016 1:13 PM, Paul Roubekas wrote: >>>> On 7/23/2016 3:44 PM, Paul Roubekas wrote: >>>>> On 7/23/2016 3:15 P

Re: No binary distribution for mod_jk?

2016-07-24 Thread Paul Roubekas
On 7/24/2016 5:20 PM, Mark Eggers wrote: > On 7/24/2016 1:13 PM, Paul Roubekas wrote: >> On 7/23/2016 3:44 PM, Paul Roubekas wrote: >>> On 7/23/2016 3:15 PM, Paul Roubekas wrote: >>>> On 7/23/2016 2:57 PM, Christopher Schultz wrote: >>>>> Paul, >&g

Re: No binary distribution for mod_jk?

2016-07-24 Thread Paul Roubekas
On 7/23/2016 3:44 PM, Paul Roubekas wrote: > On 7/23/2016 3:15 PM, Paul Roubekas wrote: >> On 7/23/2016 2:57 PM, Christopher Schultz wrote: >>> Paul, >>> >>> On 7/23/16 8:39 AM, Paul Roubekas wrote: >>>> http://www.myDomain.com gets me to Tomcat w

Re: No binary distribution for mod_jk?

2016-07-23 Thread Paul Roubekas
On 7/23/2016 3:15 PM, Paul Roubekas wrote: > On 7/23/2016 2:57 PM, Christopher Schultz wrote: >> Paul, >> >> On 7/23/16 8:39 AM, Paul Roubekas wrote: >>> http://www.myDomain.com gets me to Tomcat where my ROOT webapp is >>> deployed. Thank you very m

Re: No binary distribution for mod_jk?

2016-07-23 Thread Paul Roubekas
On 7/23/2016 2:57 PM, Christopher Schultz wrote: > Paul, > > On 7/23/16 8:39 AM, Paul Roubekas wrote: > > http://www.myDomain.com gets me to Tomcat where my ROOT webapp is > > deployed. Thank you very much!!! > > > A few things that still need correction... >

Re: No binary distribution for mod_jk?

2016-07-23 Thread Paul Roubekas
On 7/23/2016 4:12 AM, André Warnier (tomcat) wrote: > On 23.07.2016 02:37, Paul Roubekas wrote: >>> I tried going with ajp with the following configuration after reading >>> >the ajp documentation. >>> >Adding a Load module for aj

Re: No binary distribution for mod_jk?

2016-07-22 Thread Paul Roubekas
On 7/22/2016 8:14 PM, Paul Roubekas wrote: > On 7/22/2016 4:24 PM, Paul Roubekas wrote: >> On 7/22/2016 4:14 PM, Christopher Schultz wrote: >>> Paul, >>> >>> On 7/21/16 5:08 PM, Paul Roubekas wrote: >>> > On 7/21/2016 2:21 PM, Coty S

Re: No binary distribution for mod_jk?

2016-07-22 Thread Paul Roubekas
On 7/22/2016 4:24 PM, Paul Roubekas wrote: > On 7/22/2016 4:14 PM, Christopher Schultz wrote: >> Paul, >> >> On 7/21/16 5:08 PM, Paul Roubekas wrote: >> > On 7/21/2016 2:21 PM, Coty Sutherland wrote: >> >>> Actually my requirement is not that co

Re: No binary distribution for mod_jk?

2016-07-22 Thread Paul Roubekas
On 7/22/2016 4:14 PM, Christopher Schultz wrote: > Paul, > > On 7/21/16 5:08 PM, Paul Roubekas wrote: > > On 7/21/2016 2:21 PM, Coty Sutherland wrote: > >>> Actually my requirement is not that complex. All I need to do > >>> is host TomEE (a Tomcat

Re: No binary distribution for mod_jk?

2016-07-22 Thread Paul Roubekas
t Users List >>> Subject: Re: No binary distribution for mod_jk? >>> >>> -BEGIN PGP SIGNED MESSAGE- >>> Hash: SHA256 >>> >>> Paul, >>> >>> On 7/20/16 12:12 PM, Paul Roubekas wrote: >>>> I am trying to install the mod_

Re: No binary distribution for mod_jk?

2016-07-21 Thread Paul Roubekas
But TomEE gets all http traffic to the server as the architecture stands now. > Did you bind the HTTP connector in TomEE to port 80? Yes. > > On Thu, Jul 21, 2016 at 1:40 PM, Paul Roubekas <paul@orthogroup.holdings> > wrote: >> Actually my requirement is not that complex

Re: No binary distribution for mod_jk?

2016-07-21 Thread Paul Roubekas
d_cluster > smarts)? > > On Thu, Jul 21, 2016 at 12:15 PM, Paul Roubekas > <paul@orthogroup.holdings> wrote: >> I can not use mod_cluster. I was having some issues and posted this >> (https://ask.fedoraproject.org/en/question/91235/module-mod_proxy_balancer-is-loaded-i

Re: No binary distribution for mod_jk?

2016-07-21 Thread Paul Roubekas
will have build mod_jk myself. Since I have never done any such thing I am not looking forward it. On 7/21/2016 11:51 AM, Christopher Schultz wrote: > Paul, > > On 7/20/16 12:12 PM, Paul Roubekas wrote: > > I am trying to install the mod_jk on httpd for my tomcat 7.0.68 > > (T

No binary distribution for mod_jk?

2016-07-20 Thread Paul Roubekas
I am trying to install the mod_jk on httpd for my tomcat 7.0.68 (TomEE) server. I am reading this https://tomcat.apache.org/connectors-doc/webserver_howto/apache.html documentation which points to this http://tomcat.apache.org/download-connectors.cgi download page. But there is no binary

Re: How do I start and stop just the tomcat admin application from a command line?

2016-07-15 Thread Paul Roubekas
On 7/14/2016 9:54 PM, Christopher Schultz wrote: > Paul, > > On 7/14/16 12:43 PM, Paul Roubekas wrote: > > How do I start and stop just the tomcat admin application from a > > command line? I had someone try to guess the password to my > > Tomee-Plume server last

How do I start and stop just the tomcat admin application from a command line?

2016-07-14 Thread Paul Roubekas
How do I start and stop just the tomcat admin application from a command line? I had someone try to guess the password to my Tomee-Plume server last night. Thankfully I changed the default password and the hacker only tried twice. I want to be able to keep the admin application closed most of

Re: Fedora 23 ROOT##000 just hangs on startup.

2016-07-06 Thread Paul Roubekas
On 7/6/2016 5:36 PM, Christopher Schultz wrote: > Paul, > > On 7/6/16 5:11 PM, Paul Roubekas wrote: > > On 7/6/2016 5:00 PM, Paul Roubekas wrote: > >> On 7/6/2016 4:39 PM, Christopher Schultz wrote: > >>> Paul, > >>> > >>> On 7/6/16 4:10

Re: Fedora 23 ROOT##000 just hangs on startup.

2016-07-06 Thread Paul Roubekas
On 7/6/2016 5:00 PM, Paul Roubekas wrote: > On 7/6/2016 4:39 PM, Christopher Schultz wrote: >> Paul, >> >> On 7/6/16 4:10 PM, Paul Roubekas wrote: >> > Works just find on my window 7 workstation with Eclipse 4.5.2 but >> > now on Fedora 23 the startup just ha

Re: Fedora 23 ROOT##000 just hangs on startup.

2016-07-06 Thread Paul Roubekas
On 7/6/2016 4:39 PM, Christopher Schultz wrote: > Paul, > > On 7/6/16 4:10 PM, Paul Roubekas wrote: > > Works just find on my window 7 workstation with Eclipse 4.5.2 but > > now on Fedora 23 the startup just hangs. > > What do you mean "just hangs"? Take a thr

Re: Fedora 23 ROOT##000 just hangs on startup.

2016-07-06 Thread Paul Roubekas
On 7/6/2016 4:19 PM, André Warnier (tomcat) wrote: > On 06.07.2016 22:10, Paul Roubekas wrote: >> Works just find on my window 7 workstation with Eclipse 4.5.2 but now on >> Fedora 23 the startup just hangs. >> >> Moved the webapps/ROOT directory to ${CATALINA_HO

Fedora 23 ROOT##000 just hangs on startup.

2016-07-06 Thread Paul Roubekas
Works just find on my window 7 workstation with Eclipse 4.5.2 but now on Fedora 23 the startup just hangs. Moved the webapps/ROOT directory to ${CATALINA_HOME} which work just fine on the windows workstation. Double checked the server.xml file. Made sure the WAR had the same owner and group

Re: Suggestions for deploying context.xml for different environments?

2016-07-05 Thread Paul Roubekas
Will the context.xml file meet your requirement? http://javabeat.net/tomcat-jndi/ On 7/4/2016 10:42 AM, Philip Hachey wrote: > Hello. I am seeking some advice for the best ways to deploy Java web > applications to different Tomcat environments. > > In particular, my application requires that

Re: Servlet overridden by Apache Tomcat welcome page?

2016-07-03 Thread Paul Roubekas
On 7/3/2016 5:21 PM, Paul Roubekas wrote: > On 7/3/2016 4:41 PM, Mark Thomas wrote: >> On 03/07/2016 18:37, Paul Roubekas wrote: >> >>> Changes that need to be made to the server.xml file >>> The below list of changes are for the conf/server.xml file. A new

Re: Servlet overridden by Apache Tomcat welcome page?

2016-07-03 Thread Paul Roubekas
On 7/3/2016 4:41 PM, Mark Thomas wrote: > On 03/07/2016 18:37, Paul Roubekas wrote: > >> Changes that need to be made to the server.xml file >> The below list of changes are for the conf/server.xml file. A new XML >> element needs to be added to the XML stanza. >&

Re: Servlet overridden by Apache Tomcat welcome page?

2016-07-03 Thread Paul Roubekas
On 7/2/2016 4:24 PM, Paul Roubekas wrote: > Servlet overridden by Apache Tomcat welcome page? > > > > Not sure I am using the proper name for what I am calling the "Apache > Tomcat welcome page". What I am calling the "Apache Tomcat welcome > page&

Servlet overridden by Apache Tomcat welcome page?

2016-07-02 Thread Paul Roubekas
Servlet overridden by Apache Tomcat welcome page? Not sure I am using the proper name for what I am calling the "Apache Tomcat welcome page". What I am calling the "Apache Tomcat welcome page" is the page that comes up when http://localhost:8080 is entered as the address on an internet

Re: "Distinct and non-overlapping" context roots

2016-03-22 Thread Paul Benedict
By the way, I should mention that with Apache AJP in front of a container, this kind of partial matching stuff gets really interesting. :-) Cheers, Paul On Tue, Mar 22, 2016 at 11:47 AM, Paul Benedict <pbened...@apache.org> wrote: > Yes, I gave them the same example I used here. They

Re: "Distinct and non-overlapping" context roots

2016-03-22 Thread Paul Benedict
Yes, I gave them the same example I used here. They confirmed it is "overlapping". Here is the example again: /context/something <-- context is /context /context/something/somethingelse <-- context is /context/something Cheers, Paul On Tue, Mar 22, 2016 at 11:34 AM, Dav

Re: "Distinct and non-overlapping" context roots

2016-03-22 Thread Paul Benedict
ieces of information worth knowing: a) Supposedly GlassFish imposes the "overlapping" restriction on the entire application server, not just the EAR. b) The specification doesn't prevent the slash character in the context name, but I got the distinct impression that's something to fix in the

Re: "Distinct and non-overlapping" context roots

2016-03-22 Thread Paul Benedict
FYI, the EE spec lead and Servlet spec lead consulted. They said I should log a ticket against the Servlet specification on this matter. That is something I think I shall do. I found some wording in the specification that should likely have more detail. Cheers, Paul On Tue, Mar 22, 2016 at 10:49

"Distinct and non-overlapping" context roots

2016-03-19 Thread Paul Benedict
e.com/otndocs/jcp/javaee-5.0-fr-eval-oth-JSpec/ Cheers, Paul

Re: Error 404 for autodiscover.xml

2016-03-14 Thread Subhro Paul
From: Mark Thomas <ma...@apache.org> To: Tomcat Users List <users@tomcat.apache.org> Date: 03/11/2016 02:43 PM Subject:Re: Error 404 for autodiscover.xml On 11/03/2016 08:26, Subhro Paul wrote: > Hi All, > > Our client has a simple website consists of s

Error 404 for autodiscover.xml

2016-03-11 Thread Subhro Paul
alled? Before going to prevent this log I first want to know why is this been called? Thanks & Regards Subhro Paul =-=-= Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are no

Tomcat Training

2016-03-03 Thread Brookbanks, Paul
Thank you. [RegenerationCropped] Paul Brookbanks T: 416 709 9645 Ext: 287 F: 416 709 9648 2238 Dundas St. West. Suite 307 Toronto Ontario M6R 3A9 P Please consider the environment before printing this email or any attachments. This e-mail is intended only for the named recipient(s) and may contain i

Re: Tomcat Server - Arraylist java.util.ConcurrentModificationException issue

2016-02-02 Thread Subhro Paul
From: "Terence M. Bandoian" <tere...@tmbsw.com> To: Tomcat Users List <users@tomcat.apache.org> Date: 02/01/2016 07:58 PM Subject:Tomcat Server - Arraylist java.util.ConcurrentModificationException issue On 2/1/2016 6:50 AM, Subhro Paul wrote: > Hi Team

Tomcat Server - Arraylist java.util.ConcurrentModificationException issue

2016-02-01 Thread Subhro Paul
session.setAttribute("mobile_agent", "yes"); if(!isHomePage && !isExcludePath){ String mobileServer = "mobile.server.com"; try{

Need assistance on web application

2015-11-27 Thread Subhro Paul
example.com/complexModule" ? Note:- Contents present in "www.example.com" will be as it is and will not be zipped in "war" or "ear". Only new contents for "complexModule" will have war/ear and will placed as per required configuration. Thanks & Regards

Re: Strange JSP compilation issues in tomcat 7 and 8

2015-07-07 Thread paul
offering help. Paul On Mon, July 6, 2015 8:18 am, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Paul, On 7/6/15 9:20 AM, p...@kuruma.co.uk wrote: I was really hoping that there would be something tomcat related in the WEB-INF\lib folder but nothing

Re: Strange JSP compilation issues in tomcat 7 and 8

2015-07-06 Thread paul
I was really hoping that there would be something tomcat related in the WEB-INF\lib folder but nothing, they are all marked as provided in the pom file. There was a mistake in my original post, in tomcat 8.0.23 my application does not work with jdk's 1.7.0_09 or 1.8.0_11 so basically it doesnt

Strange JSP compilation issues in tomcat 7 and 8

2015-07-04 Thread paul
I am working on a spring\tiles application which I have been deploying to tomcat7 (7.0.32 and 7.0.53) and tomcat8 (8.2.0.23) and my war files are built with maven using jdk1.7.0_09. In my pom file I declare the final name using the ## syntax that I was told before on this mailing list would

Re: Finding the Apache httpd IP address when AJP is used

2015-05-01 Thread Paul Klinkenberg
Hi André, Paul Klinkenberg wrote: Hi André, Paul Klinkenberg wrote: Hi André, Paul Klinkenberg wrote: Hi Christopher, Thanks for taking the time to respond; again much appreciated. Your point, and André's, is understood. Security should not be done based on incoming IP address

Re: Finding the Apache httpd IP address when AJP is used

2015-04-30 Thread Paul Klinkenberg
by the way, where it is programmatically changed to reflect the remote client while handling the http call. Out of curiosity, could you shed some light as to why the remote_addr is not to be trusted in a regular http request? Thanks again for your time and effort! Kind regards, Paul Klinkenberg Op

Re: Finding the Apache httpd IP address when AJP is used

2015-04-30 Thread Paul Klinkenberg
Hi André, Paul Klinkenberg wrote: Hi Christopher, Thanks for taking the time to respond; again much appreciated. Your point, and André's, is understood. Security should not be done based on incoming IP address. With this current project, we off course want to deliver software which

Re: Finding the Apache httpd IP address when AJP is used

2015-04-30 Thread Paul Klinkenberg
Hi André, Paul Klinkenberg wrote: Hi André, Paul Klinkenberg wrote: Hi Christopher, Thanks for taking the time to respond; again much appreciated. Your point, and André's, is understood. Security should not be done based on incoming IP address. With this current project, we off course

Re: Finding the Apache httpd IP address when AJP is used

2015-04-30 Thread Paul Klinkenberg
Hi Christopher, Paul, On 4/29/15 10:18 PM, l...@bsoft.com.cn wrote: p.s. I asked this question, in other wording, on SackOverflow.com http://sackoverflow.com/ as well. I hope I have better luck here ;-) http://stackoverflow.com/questions/29858030/where-can-i-find-the-apach e-httpd

Re: Tomcat Thread issue

2015-04-29 Thread Subhro Paul
:19 AM, Felix Schumacher wrote: Am 24. April 2015 09:08:08 MESZ, schrieb Subhro Paul subhro.p...@tcs.com: -Subhro Paul subhro.p...@tcs.com wrote: - To: users@tomcat.apache.org From: Subhro Paul subhro.p...@tcs.com Date: 04/23/2015 06:20PM Subject: Re: Tomcat Thread issue

Finding the Apache httpd IP address when AJP is used

2015-04-29 Thread Paul Klinkenberg
maxContexts= timeBetweenContexts=0 scanClassPaths=false allowedIPs=127.0.0.1,192.168.1.52 / /Host /Engine /Service /Server Thanks in advance for your time! Kind regards, Paul Klinkenberg The Netherlands p.s. I asked

Re: Finding the Apache httpd IP address when AJP is used

2015-04-29 Thread Paul Klinkenberg
Paul Klinkenberg wrote: Hi Tomcat users! I have been working on an update for a Tomcat valve called mod_cfml. The project aims to provide automatic web context creation in Tomcat, when coming from a frontend webserver. The live code base can be found at https://github.com/utdream/mod_cfml

  1   2   3   4   5   >