Re: Tomcat `11.0.3` embedded fails to start with `InaccessibleObjectException`

2025-02-11 Thread Daniel Skiles
I was able to work around it on 17.0.13 by adding --add-opens=java.base/ java.io=ALL-UNNAMED to my startup script. On Tue, Feb 11, 2025 at 11:23 AM Daniel Skiles wrote: > I'm seeing the same thing in tomcat 10.1.35 with openjdk version "17.0.13" > 2024-10-15 > > On T

Re: Tomcat `11.0.3` embedded fails to start with `InaccessibleObjectException`

2025-02-11 Thread Daniel Skiles
I'm seeing the same thing in tomcat 10.1.35 with openjdk version "17.0.13" 2024-10-15 On Tue, Feb 11, 2025 at 8:00 AM Christopher Schultz < ch...@christopherschultz.net> wrote: > Jack, > > On 2/11/25 5:56 AM, Jack Green wrote: > > When you try to start `11.0.3` via: > > ``` > > new Tomcat(); > >

RE: Tomcat MySQL Connection Pooling JNDI lookup

2024-06-19 Thread Daniel Schwartz
g wrong with these files? Dan -Original Message- From: Christopher Schultz Sent: Wednesday, June 19, 2024 5:10 PM To: users@tomcat.apache.org Subject: Re: Tomcat MySQL Connection Pooling JNDI lookup Daniel, On 6/19/24 16:37, Daniel Schwartz wrote: > I followed you instruction to mo

RE: Tomcat MySQL Connection Pooling JNDI lookup

2024-06-19 Thread Daniel Schwartz
To: users@tomcat.apache.org Subject: Re: Tomcat MySQL Connection Pooling JNDI lookup Daniel, On 6/19/24 11:40, Daniel Schwartz wrote: > Dear Felix, > > Thank you for your reply. The connector jar file is at > > C:\Program > Files\apache-tomcat-10.1.24\lib\mysql-connector-j-8.4.0.

RE: Tomcat MySQL Connection Pooling JNDI lookup

2024-06-19 Thread Daniel Schwartz
her Sent: Wednesday, June 19, 2024 1:41 AM To: Tomcat Users List Subject: Re: Tomcat MySQL Connection Pooling JNDI lookup Am 17. Juni 2024 22:18:53 MESZ schrieb Daniel Schwartz : >Hello, > > > >I'm trying to set up MySQL 8.0.11 database connection pooling in Tomcat

RE: Tomcat MySQL Connection Pooling JNDI lookup

2024-06-19 Thread Daniel Schwartz
Dear Thomas, Your email came with no content. Please try again. Dan Schwartz From: Thomas Hoffmann (Speed4Trade GmbH) Sent: Wednesday, June 19, 2024 2:05 AM To: Tomcat Users List Subject: AW: Tomcat MySQL Connection Pooling JNDI lookup

FW: Tomcat MySQL Connection Pooling JNDI lookup

2024-06-18 Thread Daniel Schwartz
Hello again I sent the following message yesterday. Is anyone going to reply? I'm totally stuck. If no one can help, then I will have no alternative but to abandon Tomcat and try some alternative. Dan Schwartz From: Daniel Schwartz Sent: Monday, June 17, 2024 4:19 PM To:

Tomcat MySQL Connection Pooling JNDI lookup

2024-06-17 Thread Daniel Schwartz
Hello, I'm trying to set up MySQL 8.0.11 database connection pooling in Tomcat 10.1.24 on Windows 10. The MySQL database is "holidays" with user name "root" and password "rootpwd". I've tried to follow the examples at https://tomcat.apache.org/tomcat-9.0-doc/jndi-datasource-examples-howto.html

Re: What does the number preceding the catalina.org.apache.juli.AsyncFileHandler in Tomcat's conf/logging.properties mean?

2024-03-14 Thread Vincent Daniel
:) On Thu, Mar 14, 2024 at 7:53 PM Mark Thomas wrote: > > On 14/03/2024 11:51, Vincent Daniel wrote: > > Thank you so much. > > I am ashamed that I did not read the documentation carefully. > > No problem. It is only a single line in the docs and it helps a lot if > yo

Re: What does the number preceding the catalina.org.apache.juli.AsyncFileHandler in Tomcat's conf/logging.properties mean?

2024-03-14 Thread Vincent Daniel
Thank you so much. I am ashamed that I did not read the documentation carefully. On Thu, Mar 14, 2024 at 7:46 PM Mark Thomas wrote: > > On 14/03/2024 11:36, Vincent Daniel wrote: > > Hi, community > > > > When I configured Tomcat logs, I found the fo

What does the number preceding the catalina.org.apache.juli.AsyncFileHandler in Tomcat's conf/logging.properties mean?

2024-03-14 Thread Vincent Daniel
Hi, community When I configured Tomcat logs, I found the following configuration in logging.properties 1catalina.org.apache.juli.AsyncFileHandler 2localhost.org.apache.juli.AsyncFileHandler 3manager.org.apache.juli.AsyncFileHandler 4host-manager.org.apache.juli.AsyncFileHandler I am not sure wha

Re: 9.0.83 addSslHostConfig JMX Operation Regression (Sample Code Attached)

2023-12-14 Thread Daniel Skiles
Christ, Thanks for the explanation. The XML-based registration - is that something I would do as a user, or something that would be changed on the Tomcat side as part of its release bundle? On Thu, Dec 14, 2023 at 10:17 AM Christopher Schultz < ch...@christopherschultz.net> wrote: &g

Re: 9.0.83 addSslHostConfig JMX Operation Regression (Sample Code Attached)

2023-12-14 Thread Daniel Skiles
ethod. I'm not familiar with the code, but it appears that there might be an issue with how that map is constructed. On Thu, Dec 14, 2023 at 4:25 AM Rémy Maucherat wrote: > On Wed, Dec 13, 2023 at 9:43 PM Daniel Skiles > wrote: > > > > The object and opera

Re: 9.0.83 addSslHostConfig JMX Operation Regression (Sample Code Attached)

2023-12-13 Thread Daniel Skiles
0.83 might have to do with the fact that the catalina java code now has a one argument and two argument variant of the same method. On Wed, Dec 13, 2023 at 10:27 AM Christopher Schultz < ch...@christopherschultz.net> wrote: > Daniel, > > On 12/12/23 19:45, Daniel Skiles wrote: >

Re: 9.0.83 addSslHostConfig JMX Operation Regression (Sample Code Attached)

2023-12-12 Thread Daniel Skiles
tion e) { throw new RuntimeException("Error invoking " + method + " with params " + Arrays.toString(params) + " and signature " + Arrays.toString(signature), e); } } } On Fri, Dec 8, 2023 at 4:55 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > Dan

9.0.83 addSslHostConfig JMX Operation Regression (Sample Code Attached)

2023-12-07 Thread Daniel Skiles
All, I've been doing some testing, and I'm pretty sure the addSslHostConfig operation on ProtocolHandler is busted in 9.0.83. In versions prior to 9.0.82, you can call the operation with a single argument of type SSLHostConfig. In 9.0.82, that contract seems to have been broken, and you had to ca

Re: 9.0.83 addSslHostConfig failures?

2023-12-06 Thread Daniel Skiles
(DefaultMBeanServerInterceptor.java:814) ~[?:?] at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:802) ~[?:?] Any ideas here? On Wed, Dec 6, 2023 at 4:45 PM Daniel Skiles wrote: > I found the source of the problem > > 9.0.82 accepts the simple class name as a type paramete

Re: 9.0.83 addSslHostConfig failures?

2023-12-06 Thread Daniel Skiles
I found the source of the problem 9.0.82 accepts the simple class name as a type parameter for the operation. 9.0.83 requires the canonical class name. On Wed, Dec 6, 2023 at 3:06 PM Daniel Skiles wrote: > I've had no success digging into this. > > Is this a regression,

Re: 9.0.83 addSslHostConfig failures?

2023-12-06 Thread Daniel Skiles
I've had no success digging into this. Is this a regression, or was this an intentional change? On Mon, Nov 27, 2023 at 8:56 AM Daniel Skiles wrote: > Thanks for taking a look. My lightly scrubbed connector example is > attached. > > On Tue, Nov 21, 2023 at 6:45 AM Michae

Re: Tracking keep alive connections

2023-11-30 Thread Daniel Andres Pelaez Lopez
Christopher, So... when a connection is established, save the current timestamp on > the connection. When it closes, take the delta of the > start-of-connection and end-of-connection, and add it to a bounded queue > (say, 100? 1000?) of most-recent-connection-lifetimes. Any time you > request the

Re: Tracking keep alive connections

2023-11-30 Thread Daniel Andres Pelaez Lopez
tion time is 1 hour for 50 connections, with a keep alive timeout of 5 minutes, it means the connection was receiving requests the whole hour. -- Daniel Andrés Pelaez López - To unsubscribe, e-mail: users-unsubscr...@t

Tracking keep alive connections

2023-11-28 Thread Daniel Andres Pelaez Lopez
losed or similar? maybe by knowing the closed ones vs open ones, we can figure out the keep-alive ones. Any insight will be appreciated. -- Daniel Andrés Pelaez López - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache

Re: Performance tuning embedded Tomcat 10.1.7: High requests/second, HTTPs and a lot of keep alive connections

2023-11-28 Thread Daniel Andres Pelaez Lopez
w on production code and no issues at all. -- Daniel Andrés Pelaez López - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Performance tuning embedded Tomcat 10.1.7: High requests/second, HTTPs and a lot of keep alive connections

2023-11-27 Thread Daniel Andres Pelaez Lopez
ppreciated. Regards. -- Daniel Andrés Pelaez López - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: 9.0.83 addSslHostConfig failures?

2023-11-27 Thread Daniel Skiles
Thanks for taking a look. My lightly scrubbed connector example is attached. On Tue, Nov 21, 2023 at 6:45 AM Michael Osipov wrote: > On 2023/11/21 11:25:11 Michael Osipov wrote: > > On 2023/11/20 22:14:14 Daniel Skiles wrote: > > > Was there a change to the addSslHostConfig J

9.0.83 addSslHostConfig failures?

2023-11-20 Thread Daniel Skiles
Was there a change to the addSslHostConfig JMX mbean operation between 9.0.82 and 9.0.83? I have some code that works in 82, but fails with an MBeanException: Cannot find operation [addSslHostConfig] in 9.0.83. When I attempt to look at the available operations on ProtocolHandler in jconsole, it

Re: Tomcat 9.0.x on Windows crashing

2023-08-28 Thread Daniel Savard
Le jeu. 24 août 2023 à 13:06, Christopher Schultz < ch...@christopherschultz.net> a écrit : > Daniel, > > On 8/23/23 13:03, Daniel Savard wrote: > > I didn't specify the actual Tomcat version because the problem occurs > under > > all versions. We are running a

Re: Tomcat 9.0.x on Windows crashing

2023-08-28 Thread Daniel Savard
path to suit your configuration) > > Robert > Hi Robert, I will look into it. For now, I cannot modify the system easily. I need to plan a change for this with at least a one week notice and upon approval. Will try to include this in a forthcoming change. - Daniel Savard

Re: Tomcat 9.0.x on Windows crashing

2023-08-28 Thread Daniel Savard
Le jeu. 24 août 2023 à 02:29, Thomas Hoffmann (Speed4Trade GmbH) a écrit : > Hello Daniel, > > > -Ursprüngliche Nachricht----- > > Von: Daniel Savard > > Gesendet: Mittwoch, 23. August 2023 19:03 > > An: users@tomcat.apache.org > > Betreff: Tomcat

Tomcat 9.0.x on Windows crashing

2023-08-23 Thread Daniel Savard
ly if it crashes. Again, the problem is very unlikely to be with Tomcat itself, but the tuning of the VM. - Daniel Savard

Re: Pinned threads for HTTP2 using Virtual Threads on Tomcat 10.1.7

2023-07-07 Thread Daniel Andres Pelaez Lopez
Mark, Thanks for letting me know. I will wait for the August release to test. Regards. El jue, 6 jul 2023 a las 15:13, Mark Thomas () escribió: > > > 6 Jul 2023 20:09:01 Daniel Andres Pelaez Lopez : > > > I am aware Tomcat community did a great effort to move Tomat to &

Pinned threads for HTTP2 using Virtual Threads on Tomcat 10.1.7

2023-07-06 Thread Daniel Andres Pelaez Lopez
I am not sure why HTTP2 was not part of that effort? -- Daniel - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: Tomcat 10.1.x: Using CoyoteInputStream to read a Chunked Transfer Encoding (CTE) stream, manually, skiping ChunkedInputFilter

2023-06-28 Thread Daniel Andres Pelaez Lopez
El mié, 28 jun 2023 a las 7:15, Christopher Schultz (< ch...@christopherschultz.net>) escribió: > Daniel, > > On 6/27/23 15:40, Daniel Andres Pelaez Lopez wrote: > > You are right, the CMAF format of the segment might bring the fragment > size > > information, but

Re: Tomcat 10.1.x: Using CoyoteInputStream to read a Chunked Transfer Encoding (CTE) stream, manually, skiping ChunkedInputFilter

2023-06-27 Thread Daniel Andres Pelaez Lopez
El mar, 27 jun 2023 a las 13:48, Christopher Schultz (< ch...@christopherschultz.net>) escribió: > Daniel, > > On 6/27/23 12:56, Daniel Andres Pelaez Lopez wrote: > > Christopher, > > > > El mar, 27 jun 2023 a las 9:33, Christopher Schultz (< > &g

Re: Tomcat 10.1.x: Using CoyoteInputStream to read a Chunked Transfer Encoding (CTE) stream, manually, skiping ChunkedInputFilter

2023-06-27 Thread Daniel Andres Pelaez Lopez
Christopher, El mar, 27 jun 2023 a las 9:33, Christopher Schultz (< ch...@christopherschultz.net>) escribió: > Daniel, > > On 6/26/23 16:15, Daniel Andres Pelaez Lopez wrote: > > El lun, 26 jun 2023 a las 14:53, Mark Thomas () > escribió: > > > >> On 26/0

Re: Tomcat 10.1.x: Using CoyoteInputStream to read a Chunked Transfer Encoding (CTE) stream, manually, skiping ChunkedInputFilter

2023-06-26 Thread Daniel Andres Pelaez Lopez
El lun, 26 jun 2023 a las 14:53, Mark Thomas () escribió: > On 26/06/2023 20:34, Christopher Schultz wrote: > > Daniel, > > > > On 6/26/23 12:47, Daniel Andres Pelaez Lopez wrote: > >> Hi Tomcat community, > >> > >> I have a requirement whe

Tomcat 10.1.x: Using CoyoteInputStream to read a Chunked Transfer Encoding (CTE) stream, manually, skiping ChunkedInputFilter

2023-06-26 Thread Daniel Andres Pelaez Lopez
might have. I would like to know if there are other ways to override the CTE behavior, any help would be appreciated. BTW: We are using Spring Boot with Tomcat embedded. -- Daniel Andrés Pelaez López

Re: Tomcat 9.0.58 reports an error on shutdown: "Failed to clear soft references..."

2023-01-04 Thread Daniel McCue
Thank you, Mark! This answers my question and offers two (three) good solutions. I appreciate the quick, accurate, and constructive response. Dan On Wed, Jan 4, 2023 at 10:38 AM Mark Thomas wrote: > On 04/01/2023 15:11, Daniel McCue wrote: > > Apache Tomcat/9.0.58 reports an error on

Tomcat 9.0.58 reports an error on shutdown: "Failed to clear soft references..."

2023-01-04 Thread Daniel McCue
Apache Tomcat/9.0.58 reports an error on shutdown: "Failed to clear soft references from ObjectStreamClass$Caches for web application [ROOT]" The error is reported for web applications: [ROOT], [host-manager], and [manager] -- the only applications deployed in Tomcat. The traceback shows a ClassC

Re: CVE-2021-44228 Log4j 2 Vulnerability -- How does this affect Tomcat?

2021-12-13 Thread Daniel Savard
msg param " + userControlledParam); > > No. > Mfg > Thomas > > - Daniel Savard

Re: CVE-2021-44228 Log4j 2 Vulnerability -- How does this affect Tomcat?

2021-12-13 Thread Daniel Savard
Thanks, very useful information to channel back to my team and beyond. - Daniel Savard

Re: TLSv1.3 Support in Tomcat

2021-06-28 Thread Daniel Savard
https://wiki.openssl.org/index.php/TLS1.3#Ciphersuites TLSv1.3 supports 5 cipher suites and none is in your list. - Daniel Savard Le mar. 29 juin 2021 à 01:44, S Abirami a écrit : > Hi Christopher, > > Below is my Connector element, sslEnabledProtocols =TLSv1.2 ,TLS

Re: Re-Use TCP Source Ports if the Socket is Unique?

2021-06-24 Thread Daniel Baktiar
Hi Eric, It should behave the same way. The socket client application will be assigned an ephemeral port. On Fri, Jun 25, 2021 at 9:14 AM Eric Robinson wrote: > I guess I may have answered this question for myself. At least I can > simulate it with ncat. Note that I have two ncat sessions open

Re: Case Sensitivity with SSLHostConfig.hostName and SNI

2021-01-27 Thread Daniel Skiles
sure the code for choosing the certificate is actually in > JSSE. Once we hand the key store and socket over to JSSE, it picks > everything. But surely there is no such case-sensitivity bug in JSSE, > right? > > -chris > > On 1/27/21 17:25, Christopher Schultz wrote: > >

Re: Case Sensitivity with SSLHostConfig.hostName and SNI

2021-01-27 Thread Daniel Skiles
I have not uncovered. I am not intimately familiar with the Tomcat internals. On Wed, Jan 27, 2021 at 3:36 PM Mark Thomas wrote: > On 27/01/2021 19:42, Christopher Schultz wrote: > > On 1/27/21 14:37, Daniel Skiles wrote: > > > > >> Are SSLHostConfig.hostName attribut

Re: Case Sensitivity with SSLHostConfig.hostName and SNI

2021-01-27 Thread Daniel Skiles
opher Schultz < ch...@christopherschultz.net> wrote: > Daniel, > > On 1/27/21 14:37, Daniel Skiles wrote: > > I'm currently running into some peculiar behavior with SNI, and I'm > > wondering if any of you might be able to offer suggestions. I'm not sure > >

Case Sensitivity with SSLHostConfig.hostName and SNI

2021-01-27 Thread Daniel Skiles
I'm currently running into some peculiar behavior with SNI, and I'm wondering if any of you might be able to offer suggestions. I'm not sure if it's a bad config, a bug, or a limitation of the software. I have a Tomcat instance that has two SSLHostConfig elements applied. The first is the defaul

Re: Weirdest Tomcat Behavior Ever?

2020-10-16 Thread Daniel Skiles
This is a bit of a long shot, but are you running on VMWare ESX by chance? A few years ago, I had a problem where Tomcat would send data down the socket, but about half the message wouldn't actually arrive at the client. On Fri, Oct 16, 2020 at 5:05 AM Eric Robinson wrote: > Hi Mark -- > > Those

Re: Truststore in HTTPS Connector does not work with Linux

2020-09-18 Thread Daniel Savard
nd I don't see any reason for such a behavior. Regards, - Daniel Savard

Re: Changing the keystore alias of the _default_ SSLHostConfig while running.

2020-09-16 Thread Daniel Skiles
Daniel Skiles wrote: > > Did you try it? > > I've been unable to try it through JConsole or Visual VM. JConsole throws > an error indicating that it can't load the remote class, and Visual VM > disables the method. It looks like it takes a complex object, and I do

Re: Changing the keystore alias of the _default_ SSLHostConfig while running.

2020-09-14 Thread Daniel Skiles
-BEGIN PGP SIGNED MESSAGE----- > Hash: SHA256 > > Daniel, > > On 9/11/20 17:06, Daniel Skiles wrote: > > I've gotten my _default_ SNI SSLHostConfig working. Thank you for > > the help. > > Excellent. > > >> Perhaps that method could have a bet

Re: Changing the keystore alias of the _default_ SSLHostConfig while running.

2020-09-11 Thread Daniel Skiles
be better. If the server.xml isn't actually read during the reloadSslHostConfigs operation, is there a way to add an SSLHostConfig at runtime? I see addSslHostConfig on ProtocolHandler, but I'm not certain that it will do what I think it will do. On Fri, Sep 11, 2020 at 9:52 AM Daniel Skil

Re: Changing the keystore alias of the _default_ SSLHostConfig while running.

2020-09-11 Thread Daniel Skiles
x27;ll give that a try. On Fri, Sep 11, 2020 at 9:44 AM Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Daniel, > > On 9/10/20 16:39, Daniel Skiles wrote: > >> Also note that calling reloadSslHostCon

Re: Changing the keystore alias of the _default_ SSLHostConfig while running.

2020-09-10 Thread Daniel Skiles
lem. Do you know which MBean and operation that is? On Thu, Sep 10, 2020 at 4:00 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Daniel, > > On 9/10/20 13:33, Daniel Skiles wrote: > > In this case,

Re: Changing the keystore alias of the _default_ SSLHostConfig while running.

2020-09-10 Thread Daniel Skiles
; wrote: > -BEGIN PGP SIGNED MESSAGE----- > Hash: SHA256 > > Daniel, > > On 9/10/20 09:09, Daniel Skiles wrote: > > Is it possible to change the keystore alias of the _default_ > > SSLHostConfig's certificate while tomcat is running? > > > > At present,

Changing the keystore alias of the _default_ SSLHostConfig while running.

2020-09-10 Thread Daniel Skiles
Is it possible to change the keystore alias of the _default_ SSLHostConfig's certificate while tomcat is running? At present, I'm trying to move the _default_ certificate from one certificate in my keystore, to another. I modify the server.xml, then I call the reloadSslHostConfigs MBean operation

Re: [OT] Red Hat / CentOS specific question about certificates

2020-08-31 Thread Daniel Savard
Le lun. 31 août 2020 à 11:13, Christopher Schultz < ch...@christopherschultz.net> a écrit : > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > > Daniel, > > On 8/28/20 20:46, Daniel Savard wrote: > > Le ven. 28 août 2020 à 17:19, Darryl Philip Baker <

Re: Red Hat / CentOS specific question about certificates

2020-08-29 Thread Daniel Savard
up being a RedHat only question having nothing to do with Tomcat itself. From the Tomcat point of view, you can only copy the file somewhere else where the RedHat scripts, update procedures will not touch it and let Tomcat know where it is. Regards, - Daniel Savard

Re: Red Hat / CentOS specific question about certificates

2020-08-28 Thread Daniel Savard
icates. Just make a copy and put your certificates in the copy. In fact, you may not need the original file at all if only self-signed certificates are involved. All the certifications authorities in the file are then useless to you. Regards, - Daniel Savard

Re: [Tomcat 9.0.37] Https / SSL on Windows server 2016 with windows certificate store

2020-07-12 Thread Daniel Savard
tes are stored in the Windows registry. https://docs.microsoft.com/en-us/windows-hardware/drivers/install/local-machine-and-current-user-certificate-stores Since IIS is a Windows-only product, this is the simple thing for them to do. Tomcat runs on various platforms and should support open and neutral keystore formats instead. - Daniel Savard

Tomcat socket listening timeouts

2019-04-22 Thread daniel zak
ccept timed out) Thank you Daniel - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: Crash in http connector random once a day

2019-03-15 Thread Daniel Castilla | thin(k)design
ssloaders: 178 GC Roots: 3.318 Number of Objects Pending for Finalization: 0 I am really out of ideas... > Am 14.03.2019 um 14:11 schrieb Daniel Castilla | thin(k)design: > >>> From: Daniel Castilla | thin(k)design [mailto:d...@thin-k-design.com] > >

Re: Crash in http connector random once a day

2019-03-14 Thread Daniel Castilla | thin(k)design
> Is there a database service involved in the backend? No, the IDs are just for debugging, so I can identify every request uniquely. Am Do., 14. März 2019 um 13:32 Uhr schrieb Jäkel, Guido : > > >From: Daniel Castilla | thin(k)design [mailto:d...@thin-k-design.com] > >Sent:

Re: Crash in http connector random once a day

2019-03-14 Thread Daniel Castilla | thin(k)design
> >From: Daniel Castilla | thin(k)design [mailto:d...@thin-k-design.com] > >Sent: Thursday, March 14, 2019 12:37 PM > >To: Jäkel, Guido ; users@tomcat.apache.org > >Subject: Re: Crash in http connector random once a day > > > >Dear Guido, > > > >

Re: Crash in http connector random once a day

2019-03-14 Thread Daniel Castilla | thin(k)design
pt wouldn't help much, as I am on a Windows Server 2012 and I would like to avoid installing Cygwin or something similar. Regards, Daniel Am Do., 14. März 2019 um 12:02 Uhr schrieb Jäkel, Guido : > > Dear Daniel, > > a request is logged in the access log after it has finished.

Crash in http connector random once a day

2019-03-14 Thread Daniel Castilla | thin(k)design
m tomcat. This time I got in the JAVA logs a "java.net.SocketException: Connection reset by peer" (notice the difference "by peer"). I hope I described my problem accurate enough. I'm out of ideas and I'm grateful for any insight! Regards, Daniel -

Crash in http connector random once a day

2019-03-14 Thread Daniel Castilla | thin(k)design
m tomcat. This time I got in the JAVA logs a "java.net.SocketException: Connection reset by peer" (notice the difference "by peer"). I hope I described my problem accurate enough. I'm out of ideas and I'm grateful for any insight! Regards, Daniel -

Re: tomcat logs

2018-12-29 Thread Daniel Baktiar
ssing it (this behavior can of course be altered), and you won't be able to delete a log file that is opened by Windows process. Daniel On Wed, Dec 19, 2018 at 4:52 PM Adlet Azhibek wrote: > 8.0.33 tomcat > java Spring framework 4.3.13 > logging by "*org.slf4j.Logger*&quo

Re: Use existing CGI response for HTTP errors

2018-10-04 Thread Daniel Becroft
On Fri, Oct 5, 2018 at 3:12 AM Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Daniel, > > On 10/3/18 19:16, Daniel Becroft wrote: > > Hi, > > > > We are setting up Tomcat 8 to use a CGI p

Use existing CGI response for HTTP errors

2018-10-03 Thread Daniel Becroft
under IIS, and we had to configure the following option there to stop IIS doing the same thing: Is there an existing option somewhere in Tomcat that will do the same thing (ie keep the CGI response intact even if it's a HTTP error)? I can't seem to find one. --- Daniel Becroft

Re: Question about setting CATALINA_OPTS when starting Tomcat using a Windows Service in Tomcat 7.0.54

2018-08-08 Thread Daniel Savard
other properties file. This is standard stuff. The effect is the JVM now knows your port is a JMX port and it will stop to try to use it when it is already in use and free it cleanly. Regards, - Daniel Savard > >

Re: Question about setting CATALINA_OPTS when starting Tomcat using a Windows Service in Tomcat 7.0.54

2018-08-03 Thread Daniel Savard
; using a Windows Service in Tomcat 7.0.54 > > - - - external message, proceed with caution - - - > > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Louis, > > On 8/3/18 11:32 AM, Louis Zipes wrote: > > Hi Daniel, I tried your suggestion and while I think it

Re: Question about setting CATALINA_OPTS when starting Tomcat using a Windows Service in Tomcat 7.0.54

2018-08-02 Thread Daniel Savard
In ${Tomcat}/conf create the file management.properties and put your stuff in this file like: com.sun.management.jmxremote = true com.sun.management.jmxremote.port = 9876 com.sun.management.registry.ssl =true com.sun.management.ssl = true com.sun.management.ssl.enebled.protocols = TLSv1.2 ... The

Tomcat 8.5.32 parseHost error

2018-07-24 Thread Daniel Savard
with this version or another one? Regards, - Daniel Savard

Re: Logging framework

2017-12-24 Thread Daniel Baktiar
stalled by executing: sudo yum list | grep tomcat If it shows any tomcat, uninstall it using (I am assuming this is your development machine, not production machine): sudo yum remove Regards, Daniel Baktiar On Tue, Dec 12, 2017 at 5:43 PM, mirunalini Chandrasekaran < miru3...@gmail.com>

Re: how to upgrade tomcat 8.5.x?

2017-05-17 Thread Daniel Savard
omcat-8.5.12/lib >> cp ./apache-tomcat-8.5.14/lib/websocket-api.jar >> ../apps/apache-tomcat-8.5.12/lib >> > > > > --- > This email has been checked for viruses by Avast antivirus software. > https://www.avast.com/antivirus > Maybe a useless comment. However I upgraded from 8.0 to 8.5. I have both a CATALINA_HOME and CATALINA_BASE and the upgrade was really easy and summarizes almost entierly in changes for the new configuration syntax in the server.xml file. Upgrading from a release to another is almost a no brainer, as well as upgrading to a new Java version. It may be a little more work to start with to setup two separated filetree, but on the long run, it pays. I have to maintain and support about 70 instances of Tomcat and a dozen of applications as a sideline job. - Daniel Savard

Re: Redirection/URL rewriting Tomcat 8.5.14

2017-05-12 Thread Daniel Savard
Hi Chris, 2017-05-12 13:31 GMT-04:00 Christopher Schultz : > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Daniel, > > On 5/12/17 10:03 AM, Daniel Savard wrote: > > Hi everyone, > > > > my question is not specific to the Tomcat version specified in

Redirection/URL rewriting Tomcat 8.5.14

2017-05-12 Thread Daniel Savard
artup. Is there a way to debug this problem? How can I see what is going on with the execution of the rewriting class? Regards, - Daniel Savard

Tomcat 8.5.11 -Djava.net.debug=ssl not logging

2017-04-07 Thread Daniel Morrison
Problem... Tomcat 8.5 -Djava.net.debug=ssl not logging Porting a REST interface from Glassfish 4 to Tomcat 8.5, works fine. Glassfish -Djava.net.debug=ssl logs Cipher Suites to server.log. Tomcat 8.5 the java debug setting doesn't produce any SSL output in the logs. Why needed... Older Glassfi

mq: (1)

2017-03-17 Thread daniel okouya
http://azalsigorta.com.tr/tyrbqjm.php ***Man perfected _by society is the _best of all animals; he is the most terri_ble of all when he lives without law, and without justice.Floy Brockus

Re: Getting application root path before servlet is initialized?

2017-02-22 Thread Daniel Küppers
f youre not allready familiar with vault, give it a try [2]. Daniel [1] https://github.com/januslabs/tomcat-vault [2] https://www.hashicorp.com/vault.html - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org

Re: Can Tomcat act as an HTTPS proxy?

2017-01-19 Thread Daniel Savard
n production at my shop and it is working fine so far. Regards, - Daniel Savard

Re: How many instances Tomcat?

2016-12-16 Thread Daniel Savard
urces consumption, you need to look at what your specific applications need and what kind of workload you expect. Giving the amount of RAM and the number of cores is useless. I run 9 instances of Tomcat on a single server with 16 GB of RAM and 2 cores. Regards, - Daniel Savard

Re: TLS/SSL Elliptic Curve support problem with Tomcat 7.0.72

2016-11-09 Thread Daniel Savard
2016-11-09 16:11 GMT-05:00 Christopher Schultz : > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Daniel, > > You don't seem to have received a response about this... > > On 10/11/16 2:13 PM, Daniel Savard wrote: > > I have a problem which evade

Re: Tomcat clustering and FarmDeployer

2016-10-21 Thread Daniel Savard
Le 20 oct. 2016 3:21 PM, "André Warnier (tomcat)" a écrit : > > Maybe naive, and I have never tried any of this myself, but is there a reason why you cannot use method 2 in > http://tomcat.apache.org/tomcat-8.0-doc/deployer-howto.html#A_word_on_Contexts > in that scenario ? > Thanks, tested for m

Re: Tomcat clustering and FarmDeployer

2016-10-20 Thread Daniel Savard
ré, thanks I will give it a try. I never used method 2 before and I just forgot about it. ----- Daniel Savard

Tomcat clustering and FarmDeployer

2016-10-20 Thread Daniel Savard
cific to the web application? BTW, if it is of any use, I am running Tomcat 8.0.36 and Oracle JDK 1.8.0_92. Regards, - Daniel Savard

TLS/SSL Elliptic Curve support problem with Tomcat 7.0.72

2016-10-11 Thread Daniel Savard
among the three following browsers: IE 11, Chrome and Firefox. IE11 and Chrome are complaining about TLS protocol error without saying anything about the cause of the error. Any hints? Regards, ----- Daniel Savard

Re: Tomcat 8 HTTPS issue with old browser

2016-10-04 Thread Daniel Savard
Your challenge is much more with Java 8 as already mentioned above if you use a non-APR connector and with OpenSSL otherwise than with Tomcat itself. - Daniel Savard 2016-10-04 6:43 GMT-04:00 Garratt, Dave : > To elaborate, there is only this single application running on

Re: TLS 1.2 Handshake on Tomcat 7.0.39 Getting Internal Error: Key format must be RAW

2016-09-22 Thread Daniel Savard
2016-09-22 6:16 GMT-04:00 André Warnier (tomcat) : > Dono, > > Ok, this is really a long shot, and I really do not know what I am > talking about.. > > I just want to point out that in the course of doing some searches on the > WWW with keywords related to your issue, I seemed several times to co

Re: Apache TomCat 5.5

2016-09-14 Thread Daniel Küppers
ur tomcat to a recent version. Related SO-Question: http://stackoverflow.com/questions/27541755/add-hsts-feature-to-tomcat Best regards, Daniel - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional comm

Re: tomat8.5 write logs with incorret os permission

2016-08-05 Thread Daniel Savard
if your OS support them. You can use umask to change the default behavior. If security of log files is critical for your application, you should take time to design the logging appropriately and don't expect someone else to take care of all your concerns for you. ----- Daniel Sav

Re: Tomcat Log file setting.

2016-07-19 Thread Daniel Küppers
r the drive letter *D:*. If that doesnt bring something up, try the Log4j user-list: https://logging.apache.org/log4j/1.2/mail-lists.html greetings Daniel Am 19.07.2016 um 23:33 schrieb Boyle, James A: Hello, I have a web app running on my workstation using Tomcat 7 and hav

Re: Facing issue while configuring SSL

2016-07-14 Thread Daniel Savard
ry of your Tomcat instance. I'm not sure about the C: in the pathname. However, ${catalina.base}/conf/ is portable and enables you to move you instance into another directory without having to modify all the configuration files. - Daniel Savard

Re: Need help setting up SSL on Tomcat 8

2016-07-13 Thread Daniel Savard
2016-07-13 15:56 GMT-04:00 Sean Son : > Thank you for your answer guys. Is there anywhere in the Tomcat config > files that I would need to specify the DNS name? Like in Apache we would > specify the DNS name in a Virtualhost. > > No. ----- Daniel Savard

Re: Need help setting up SSL on Tomcat 8

2016-07-12 Thread Daniel Savard
h two DNS entries. If none of these can be resolved for your server, the certificate is considered invalid. ----- Daniel Savard

Re: Need help setting up SSL on Tomcat 8

2016-07-07 Thread Daniel Savard
2016-07-07 14:53 GMT-04:00 Sean Son : > > > On Thu, Jul 7, 2016 at 12:24 PM, Sean Son < > linuxmailinglistsem...@gmail.com> wrote: > >> Copying Daniel and Ognjen on this >> >> On Thu, Jul 7, 2016 at 12:02 PM, Sean Son < >> linuxmailinglistsem...

Re: Need help setting up SSL on Tomcat 8

2016-07-07 Thread Daniel Savard
d" keyAlias="{b81d8607-57e9-4c35-a058-cd46099e7797}" > SSLEnabled="true" scheme="https" secure="true" >clientAuth="false" sslProtocol="TLS" /> > > Yes. - Daniel Savard

Re: Tomcat 7 and SHA-1

2016-07-01 Thread Daniel Savard
2016-07-01 16:21 GMT-04:00 Christopher Schultz : > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Greg, > > On 7/1/16 3:03 AM, Greg Beresnev wrote: > > Thanks Daniel - any idea which cipher in particular needs to be > > absent in order for the SHA-1-based

Re: Need help setting up SSL on Tomcat 8

2016-07-01 Thread Daniel Savard
ve the alias and Common Name clearly identified on the output in a verbose format. Use the -v option to the keytool command for this. No need to post everything here if you are unsure. - Daniel Savard

  1   2   3   4   5   6   7   8   9   10   >