Re: AW: Maybe a stupid (Windows related) question

2022-03-23 Thread Konstantin Kolinko
ср, 23 мар. 2022 г. в 14:12, Rony G. Flatscher (Apache) : > > skip... > > startup.bat uses start to run catalina.bat in a new cmd window with: > > call "%EXECUTABLE%" start %CMD_LINE_ARGS% > > catalina.bat then starts Tomcat as: > > %_EXECJAVA% %CATALINA_LOGGING_CONFIG% %LOGGING_MANAGER% %J

Re: Unknown http2 settings is logged with wrong settings key

2022-03-23 Thread Rémy Maucherat
On Wed, Mar 23, 2022 at 8:28 PM Thomas Hoffmann (Speed4Trade GmbH) wrote: > > > > > -Ursprüngliche Nachricht- > > Von: Christopher Schultz > > Gesendet: Mittwoch, 23. März 2022 16:56 > > An: users@tomcat.apache.org > > Betreff: Re: Unknown http2 settings is logged with wrong settings key

Re: Unknown http2 settings is logged with wrong settings key

2022-03-23 Thread Rémy Maucherat
On Wed, Mar 23, 2022 at 8:28 PM Thomas Hoffmann (Speed4Trade GmbH) wrote: > > > > > -Ursprüngliche Nachricht- > > Von: Christopher Schultz > > Gesendet: Mittwoch, 23. März 2022 16:56 > > An: users@tomcat.apache.org > > Betreff: Re: Unknown http2 settings is logged with wrong settings key

AW: Unknown http2 settings is logged with wrong settings key

2022-03-23 Thread Thomas Hoffmann (Speed4Trade GmbH)
> -Ursprüngliche Nachricht- > Von: Christopher Schultz > Gesendet: Mittwoch, 23. März 2022 16:56 > An: users@tomcat.apache.org > Betreff: Re: Unknown http2 settings is logged with wrong settings key > > Thomas, > > On 3/23/22 10:13, Thomas Hoffmann (Speed4Trade GmbH) wrote: > > Hello,

Re: AW: Maybe a stupid (Windows related) question

2022-03-23 Thread Rony G. Flatscher (Apache)
On 23.03.2022 18:21, EXT-Denton, Sam T wrote: > I believe that "2>&1 1>D:\orx.debug\work_rii_tomcat\test.log" will first > redirect stderr to stdout, and then redirect stdout to the file, leaving > stderr pointing to the original stdout, which is presumably the terminal. > > Try "1>D:\orx.debug\w

RE: AW: Maybe a stupid (Windows related) question

2022-03-23 Thread EXT-Denton, Sam T
I believe that "2>&1 1>D:\orx.debug\work_rii_tomcat\test.log" will first redirect stderr to stdout, and then redirect stdout to the file, leaving stderr pointing to the original stdout, which is presumably the terminal. Try "1>D:\orx.debug\work_rii_tomcat\test.log 2>&1" -Original Message--

Re: Unknown http2 settings is logged with wrong settings key

2022-03-23 Thread Christopher Schultz
Thomas, On 3/23/22 10:13, Thomas Hoffmann (Speed4Trade GmbH) wrote: Hello, I got some warnings logged from http2 protocol and the logged values seem to be wrong. If an unknown http2 settings is received, it logs the key and the value to the logfile: /org/apache/coyote/http2/ConnectionSetting

Re: Fwd: tomcat 9.50 - rewrite rule question

2022-03-23 Thread Felix Schumacher
Am 23. März 2022 12:14:25 MEZ schrieb rupali singh : >Hi Chris, > >I already tried with fully qualified name but its not working Can you be more specific, what you tried? Is Chris right and your context name is apex? Felix > >On Tue, Mar 22, 2022, 7:15 PM Christopher Schultz < >ch...@christo

Unknown http2 settings is logged with wrong settings key

2022-03-23 Thread Thomas Hoffmann (Speed4Trade GmbH)
Hello, I got some warnings logged from http2 protocol and the logged values seem to be wrong. If an unknown http2 settings is received, it logs the key and the value to the logfile: /org/apache/coyote/http2/ConnectionSettingsBase.java, line 90: case UNKNOWN: // Unrecognised

Re: Maybe a stupid (Windows related) question

2022-03-23 Thread Rony G. Flatscher (Apache)
On 23.03.2022 13:22, Mark Thomas wrote: > On 23/03/2022 10:34, Rony G. Flatscher (Apache) wrote: >> The use case is testing Tomcat 10 in various ways, including running it in >> debug mode and attaching >> via IntelliJ for inspection. > > You can still do this when Tomcat is running as a service.

Re: Maybe a stupid (Windows related) question

2022-03-23 Thread Mark Thomas
On 23/03/2022 10:34, Rony G. Flatscher (Apache) wrote: The use case is testing Tomcat 10 in various ways, including running it in debug mode and attaching via IntelliJ for inspection. You can still do this when Tomcat is running as a service. Just set the appropriate properties. Mark -

Re: What causes "client errors" with mod_jk

2022-03-23 Thread Christopher Schultz
All, On 3/23/22 08:08, Christopher Schultz wrote: What kinds of things will cause a "client error" in mod_jk's accounting? Does that mean things like unexpected disconnects on the part of the remote client (i.e. web browser), or does it mean failure of the jk module itself to connect (as a cli

What causes "client errors" with mod_jk

2022-03-23 Thread Christopher Schultz
All, What kinds of things will cause a "client error" in mod_jk's accounting? Does that mean things like unexpected disconnects on the part of the remote client (i.e. web browser), or does it mean failure of the jk module itself to connect (as a client) to the back-end Tomcat? I'm starting t

Re: Maybe a stupid (Windows related) question

2022-03-23 Thread Rony G. Flatscher (Apache)
On 23.03.2022 12:11, Rony G. Flatscher (Apache) wrote: > On 23.03.2022 11:51, Konstantin Kolinko wrote: >> вт, 22 мар. 2022 г. в 20:21, Rony G. Flatscher (Apache) : >>> For debugging purposes I downloaded the zip-version of Tomcat 10.0.18 and >>> start it up using >>> %CATALINA_HOME%\bin\startup.

Re: Fwd: tomcat 9.50 - rewrite rule question

2022-03-23 Thread rupali singh
Hi Chris, I already tried with fully qualified name but its not working On Tue, Mar 22, 2022, 7:15 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > All, > > On 3/21/22 10:19, Felix Schumacher wrote: > > > > Am 21.03.22 um 06:39 schrieb rupali singh: > >> Hi Felix, > >> > >> locati

RE: Problems deploying new .war application on Linux

2022-03-23 Thread Scott,Tim
Hi all, If only for the email archives – just a note to say that I have not yet found a solution. Thanks, Tim -- Tim Scott OCLC · Senior Software Engineer / Technical Product Manager cc: IT file OCLC COVID-19 resources: oc.lc/covid19-service-info From: Sc

Re: AW: Maybe a stupid (Windows related) question

2022-03-23 Thread Rony G. Flatscher (Apache)
On 23.03.2022 11:45, Thomas Hoffmann (Speed4Trade GmbH) wrote: >> -Ursprüngliche Nachricht- >> Von: Rony G. Flatscher (Apache) >> Gesendet: Mittwoch, 23. März 2022 11:34 >> An: users@tomcat.apache.org >> Betreff: Re: Maybe a stupid (Windows related) question >> >> On 22.03.2022 20:18, Chri

Re: Maybe a stupid (Windows related) question

2022-03-23 Thread Rony G. Flatscher (Apache)
On 23.03.2022 11:51, Konstantin Kolinko wrote: > вт, 22 мар. 2022 г. в 20:21, Rony G. Flatscher (Apache) : >> For debugging purposes I downloaded the zip-version of Tomcat 10.0.18 and >> start it up using >> %CATALINA_HOME%\bin\startup.bat. >> >> >> >> Probably I have been doing something wrong

Re: Maybe a stupid (Windows related) question

2022-03-23 Thread Konstantin Kolinko
вт, 22 мар. 2022 г. в 20:21, Rony G. Flatscher (Apache) : > > For debugging purposes I downloaded the zip-version of Tomcat 10.0.18 and > start it up using > %CATALINA_HOME%\bin\startup.bat. > > > > Probably I have been doing something wrong in the past hours and not seeing > the forest for the

AW: Maybe a stupid (Windows related) question

2022-03-23 Thread Thomas Hoffmann (Speed4Trade GmbH)
> -Ursprüngliche Nachricht- > Von: Rony G. Flatscher (Apache) > Gesendet: Mittwoch, 23. März 2022 11:34 > An: users@tomcat.apache.org > Betreff: Re: Maybe a stupid (Windows related) question > > On 22.03.2022 20:18, Christopher Schultz wrote: > > ... cut ... > > > You still can't real

Re: Maybe a stupid (Windows related) question

2022-03-23 Thread Rony G. Flatscher (Apache)
On 22.03.2022 20:18, Christopher Schultz wrote: ... cut ... > You still can't really "background" the process the way you can on *nix. > Sure, you can get your > command-prompt back, but if you kill cmd.exe, so does your child process die. > And if you log out, > that process dies as well. The