Re: Using PHP4 with Tomcat5.5

2008-06-17 Thread Martin
where php5srvlt.dll is located in the folder which java_opts environment variable specifies thru java.library.path e.g. SET JAVA_OPTS=-Djava.library.path=F:\PHP export JAVA_OPTS HTH Martin - Original Message - From: "André Warnier" <[EMAIL PROTECTED]> To: "Tom

Re: Running on Mac OS 10.4

2008-06-21 Thread Martin
Walter- org/apache/catalina/startup/Bootstrap is located in $TOMCAT_HOME/bin/bootstrap.jar FWIW Martin - Original Message - From: "Walter Thompson" <[EMAIL PROTECTED]> To: Sent: Saturday, June 21, 2008 5:08 PM Subject: Running on Mac OS 10.4 We are trying to run

Re: Tomcat Connection Pooling - wait_timeout

2008-06-21 Thread Martin
ga-bin.jar?rev=56 FWIW Martin- - Original Message - From: "Christopher Schultz" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Saturday, June 21, 2008 11:33 AM Subject: Re: Tomcat Connection Pooling - wait_timeout -BEGIN PGP SIGNED MESSAGE-

Re: Running on Mac OS 10.4

2008-06-21 Thread Martin
please confirm this entry in $TOMCAT_HOME/bin/catalina.sh CLASSPATH="$CLASSPATH":"$CATALINA_HOME"/bin/bootstrap.jar: pls confirm $CATALINA_HOME"/bin/bootstrap.jar exists Martin - Original Message - From: "Walter Thompson" <[EMAIL PROTECTED]>

Re: Update tomcat service (of version 5.5)

2008-06-22 Thread Martin
also have the option of starting with %CATALINA_HOME%/bin/startup.bat BTW: errno 6 is invalid handle indicating you are attempting to acquire occupied resource (which is most probably already acquired) Martin - Original Message - From: "Caldarale, Charles R" <[EMAIL PR

Re: server resources

2008-06-23 Thread Martin
assuming you'll want to manage multiple resources such as DB connection(pools) and/or webservices and/or JMS Messaging Queues havent heard about PHP's ability to multi-thread? anyone? Martin - Original Message - From: "Johnny Kewl" <[EMAIL PROTECTED]> To:

Re: [Logging] Facility Specific Properties

2008-06-23 Thread Martin
limitations as well as the ability to configure in Appenders (socket/file etc) replace with Log4j http://logging.apache.org/log4j/1.2/index.html FWIW Martin - Original Message - From: "Christopher Schultz" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Mon

Re: jsp compile question

2008-07-29 Thread Martin
download TC-5.5.20 src distro inside $TOMCAT_HOME\src\apache-tomcat-5.5.2x-src\jasper\src\bin http://tomcat.apache.org/download-55.cgi look for jspc.bat Martin - Original Message - From: "Jq" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Tuesday, July 29

Re: is it possible more than 1 tomcat in single system?

2008-07-31 Thread Martin
scope they are freed be careful on allocations for anything which uses Collector finally if you dont need the memory (and you can spare 1-2 sec delay) dont be afraid to call Runtime.gc() to recycle the discarded memory http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Runtime.html#gc() Martin

Re: 503 under load

2008-05-07 Thread Martin
The response can request retry-after # seconds via response.setHeader response.setHeader("Retry-After", "5"); M- - Original Message - From: <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Wednesday, May 07, 2008 2:43 PM Subject: 503 under load Hi, We've started to stress test a

Re: retrieving two different objects from session (should be thesame)

2008-05-08 Thread Martin
are you proposing synchronized access to facade object ? M- - Original Message - From: "Christopher Schultz" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Thursday, May 08, 2008 10:33 AM Subject: Re: retrieving two different objects from session (should be thesame) -BEGIN

Re: error 1067

2008-05-09 Thread Martin
Jim- Can you start at command line %CATALINA_HOME%\bin\startup.bat ? M- - Original Message - From: "jim murray" <[EMAIL PROTECTED]> To: Sent: Friday, May 09, 2008 2:37 PM Subject: error 1067 I just had to restore my OS (windows XP) and re-install Apache 6. When I start the service

Re: Vista tomcat6.exe "Access denied"

2008-05-13 Thread Martin
permission errors caused by not ensuring the binary has assigned rights such as execute,read and write My guess is you installed the binary as Admin and are attempting to run the binary under another permission setting perhaps another user with lesser permission Anyone else? M- - Original

Re: Moving a site

2008-05-22 Thread Martin
Turn on god permissions on that folder.. Martin - Original Message - From: "David Smith" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Thursday, May 22, 2008 3:01 PM Subject: Re: Moving a site > SEVERE: Error starting static Resources java.

Re: Many web applications

2008-05-27 Thread Martin
taglibs interceptors DBProcedures as webapp1? http://struts.apache.org/ Martin - Original Message - From: "Jakob Hemicke Greve" <[EMAIL PROTECTED]> To: Sent: Monday, May 26, 2008 2:53 AM Subject: Many web applications Hi All, We are having a architectural discussion

Re: jsp run on tomcat at godaddy.com

2008-05-28 Thread Martin
Nope.. Nothing to do with godaddy being bad (whatever thats supposed to mean..?) do is a struts webapp you need to supply ./WEB-INF/struts-config.xml to diagnose send support emails to [EMAIL PROTECTED] Martin - Original Message - From: "tamnle123" <[EMAIL PROTECTED

Re: Code Injection Tomcat 6

2008-05-29 Thread Martin
which security breach does your algorithm seek to detect or prevent.. HTML/JavaScript code injection? http://aranea.zuavra.net/index.php/66/#ig-4 ? Martin- - Original Message - From: "Peter Stavrinides" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Thur

Re: Missing jar in 5.5.26 - Looking for the easiest way out

2008-05-29 Thread Martin
Hi Mark- the error seems to come from commons-fileupload package.. I would ping the maintainers and build manager for commons-fileupload at http://commons.apache.org/fileupload/mail-lists.html Thanks! - Original Message - From: "Mark Smits" <[EMAIL PROTECTED]> To: Sent: Thursday, May

Re: Tomcat 5.5 and Connection Pooling

2008-05-29 Thread Martin
Looks like your container is attempting to serialize/deserialize Do those classes implement Serializable? (also..keep in mind A no-arg constructor must be accessible to any subclass that is serializable.) Martin - Original Message - From: "Mike" <[EMAIL PROTECTED

Re: Tomcat 5.5 and Database Connection Pooling

2008-05-29 Thread Martin
them out and I could'nt find JDBC-ODBC drivers anywhere from DataDirect.com http://www.datadirect.com/developer/jdbc/basics/index.ssp Will your DB allow you to go in with a straight JDBC driver? Anyone else? Martin - Original Message - From: "Mike" <[EMAIL PROTECTED]>

Re: log4j problem

2008-05-31 Thread Martin
The OFF has the highest possible rank and is intended to turn off logging. http://www.jdocs.com/log4j/1.2.13/api-index.html?m=class&p=org.apache.log4j&c=PropertyConfigurator&render=classic HTH Martin - Original Message - From: "John Pedersen" <[EMAIL

Re: How to run own java application within Tomcat

2008-06-03 Thread Martin
Slobodanka- if you want to dynamically create and access TC entities (engines,connectors etc) from outside TC environment you would need to implement TC embedded server http://www.vsj.co.uk/articles/display.asp?id=319 HTH Martin - Original Message - From: "Slobodanka Dimitri

Re: Does HTTPRequest.getParameter() return encoded or decoded?

2008-06-04 Thread Martin
eryParameters; } HTH Martin-- - Original Message - From: "Mark H. Wood" <[EMAIL PROTECTED]> To: Sent: Wednesday, June 04, 2008 4:09 PM Subject: Does HTTPRequest.getParameter() return encoded or decoded?

Re: Moving from a very old Tomcat to a new Tomcat.

2008-06-05 Thread Martin
if your client doesnt want to write cookies URL-rewrite is the answer http://tuckey.org/urlrewrite/ Apache analog is mod_rewrite HTH Martin - Original Message - From: "André Warnier" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Thursday, June 05, 2008 7

Re: Configuring Apache with Tomcat using mod_jk connector

2008-06-07 Thread Martin
do you have the JKMount directive in your %APACHE_HOME%/conf/httpd.conf ? # send all requests ending in .jsp to ajp13 JkMount /*.jsp ajp13 http://tomcat.apache.org/connectors-doc/webserver_howto/apache.html HTH Martin- - Original Message - From: "Thanuja Danda" <[EMAIL PR

Re: Problem in starting tomcat

2008-06-09 Thread Martin
cat will be the base for webapps only CATALINA_HOME="/usr/share/tomcat5" JASPER_HOME="/usr/share/tomcat5" CATALINA_TMPDIR="/usr/share/tomcat5/temp" /* Be aware that TC may only execute under elevated privs under sudo as in this example */ sudo - tomcat -c $CATAL

Re: Session lost when switching from https to http after upgrade to Tomcat 6

2008-06-09 Thread Martin
If you're in a secure location that disallows cookies..you can always try url-rewrite Tomcat http://tuckey.org/urlrewrite/ Caucho http://www.caucho.com/resin/doc/rewrite-tags.xtp Apache mod_rewrite http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html HTH Martin - Original Me

problems with welcome files

2010-03-03 Thread martin
Hi, i have installed apache http 2.2.14 and tomcat 6.0.24. I deployed railo 3.1.2.001 final (cfml engine). I have to use Windows XP and i have administrative privileges. This is my httpd-vhost.conf: ServerName railo DirectoryIndex index.cfm index.html ProxyReques

RE: RE: problems with welcome files

2010-03-04 Thread martin
>> From: martin [mailto:mrt...@googlemail.com] >> Subject: problems with welcome files >> >> i have installed apache http 2.2.14 and tomcat 6.0.24. >Step 1: Get httpd out of the game; test with Tomcat's HTTP first. When that works, add httpd back in. Ok, ht

mod_jk restarting during uploads of large files

2011-07-04 Thread martin
Hi I have a problem when uploading files to tomcat through mod_jk. When uploading smaller files (<100kb) everything seems to work fine, but when uploading files of about 1.5Mb it seems as if the server is restarting and causing a 503 error. I've tried modifying timeouts in both apache an

Re: mod_jk restarting during uploads of large files

2011-07-07 Thread martin
Yeh, I've worked out what was happening, seems that tomcat was being killed by the system running out of memory, which was happening without any log messages on the system at all, which was rather unhelpful and left me completely stumped for a while. However adding extra swap space and mem

Session init problem since moving to new server/tomcat

2013-11-08 Thread Martin
could be responsible for this? I obviously copied all the tomcat settings from the older version and I cannot find anything worthy in the logs. Thanks, Martin  http://www.gleichklang-mail.de: Der Email-Zugang für ökologisch und sozial denkende Menschen

Re: Session init problem since moving to new server/tomcat

2013-11-08 Thread Martin
Thank you Christopher for your in depth annotations. We just downgraded from v6.0.34 to .20 and the problem has vanished. We obviously have some changes to do before we can upgrade to v7 as far as the session handling is concerned. Your post will help us along the way. Thanks again. Martin

How to setup Apache web server for a Tomcat deployed Spring application

2023-09-15 Thread Martin Moore
Hello, I have a situation where I want to call an Tomcat deployed Spring application remotely without adding the port number (8080), I had tried to use 80 in Connector but wasn't able to connect to it when outside the LAN. So I resorted to creating a proxy server using Apache2 Web Server (along si

Migrating from TC9 to TC10. Can the jakartaConverter log problem cases?

2023-10-13 Thread Martin Knoblauch
ork somewhere? How to enable it? Sorry if this is a stupid question. Thanks in advance Martin -- -- Martin Knoblauch email: k n o b i AT knobisoft DOT de www: http://www.knobisoft.de

Ignoring invalid If-None-Match header instead of status 400?

2024-08-22 Thread Jiřička , Martin
r/s and status 400 can break things, is there some option how to silently ignore invalid(?) If-None-Match? Thanks Martin - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: Ignoring invalid If-None-Match header instead of status 400?

2024-08-23 Thread Jiřička , Martin
not check that. Thank you very much, Mark! Martin - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: Tomcat testing

2021-12-08 Thread Martin Grigorov
HI, On Wed, Dec 8, 2021 at 11:20 AM Mark Thomas wrote: > On 08/12/2021 08:44, Hiran CHAUDHURI wrote: > > Hello there. > > > > My organization requires that Tomcat releases - especially patches - get > tested before we propagate them into production environments. > > For sure similar tests are ru

About granting permissions to Tomcat JVM

2022-10-08 Thread Martin Moore
Hello, I am facing a problem using Tomcat V8 with my J2ee app that deletes (using file.delete() Java 8) a file from disk (Windows). The file is actually deleting only on application level meaning that the application does not see the file anymore but if i open the folder i still see the file which

Re: About granting permissions to Tomcat JVM

2022-10-09 Thread Martin Moore
/10/2022 17:36, Martin Moore wrote: > > Hello, > > > > I am facing a problem using Tomcat V8 with my J2ee app that deletes > (using > > file.delete() Java 8) a file from disk (Windows). The file is actually > > deleting only on application level meaning that the appl

Re: About granting permissions to Tomcat JVM

2022-10-09 Thread Martin Moore
ed, it is marked for deletion and when the file lock is > released, the file is physically deleted. > > Maybe you can check with ProcessExplorer from MS whether there is an open > file handle on this file. > > Greetings, > Thomas > > > -Ursprüngliche Nachricht--

Re: About granting permissions to Tomcat JVM

2022-10-09 Thread Martin Moore
dim. 9 oct. 2022 à 16:03, Thomas Hoffmann (Speed4Trade GmbH) a écrit : > > > -Ursprüngliche Nachricht----- > > Von: Martin Moore > > Gesendet: Sonntag, 9. Oktober 2022 15:37 > > An: thomas.hoffm...@speed4trade.com.invalid; Tomcat Users List > > > > Betr

Re: About granting permissions to Tomcat JVM

2022-10-09 Thread Martin Moore
s more hidden in some other routines which might use a > MappedByteBuffer to read or write. > > > > > > Le dim. 9 oct. 2022 à 16:03, Thomas Hoffmann (Speed4Trade GmbH) > > a écrit : > > > > > > > > > -Ursprüngliche Nachricht- > >

Re: About granting permissions to Tomcat JVM

2022-10-09 Thread Martin Moore
@Rob this is the command: %CATALINA_HOME%\bin\startup.bat Le dim. 9 oct. 2022 à 21:30, Rob Sargent a écrit : > > > > On Oct 9, 2022, at 8:54 AM, Martin Moore > wrote: > > > > @thomas.hoffm...@speed4trade.com.invalid > > how to use the debugger in >

CVE-2021-43980 completely fixed?

2022-12-12 Thread Martin Garbe
bug exists. * We replaced tomcat with undertow and all e2e tests run fine. >From our point of view, we have an environment/configuration which triggers >this bug very often 100%). If you need anybody to test further fixes, then we can help you. Please let us know. Best regards, Martin Garbe

Re: [mod_jk] Is it possible to set the value of a specific attribute via HTTP?

2023-07-03 Thread Martin Knoblauch
st proxy to the HTTPS port? Is there an equivalent to jkmanager with mod_proxy? Thanks Martin -- ------ Martin Knoblauch email: k n o b i AT knobisoft DOT de www: http://www.knobisoft.de

Re: Version Question

2020-03-20 Thread Martin Grigorov
gt; The first. CI lists the currently developed versions. Martin > Thank you, > > > Dream * Excel * Explore * Inspire > Jon McAlexander > Asst Vice President > > Middleware Product Engineering > Enterprise CIO | Platform Services | Middleware | Infrastructure Solution

Re: Tomcat Wiki Source Code Download

2020-03-24 Thread Martin Grigorov
ternal logging for Apache Tomcat uses JULI, a packaged renamed fork ./docs/tomcat-10.0-doc/logging.html:38: The internal logging for Apache Tomcat uses JULI, a packaged renamed fork ./docs/tomcat-8.0-doc/logging.html:38: The internal logging for Apache Tomcat uses JULI, a

Re: invoke jmxproxy servlet using argument with a , is not a possible

2020-03-24 Thread Martin Grigorov
your case it finds 5 parameters, while StoreConfig#storeContext(String, boolean, boolean) expects 3 parameters. Without improvements in the parsing code I think your case is not supported at the moment. Martin > > of course it works from jconsole. > > (By the way as an alternative

Re: Support with error in launcher.log

2020-03-30 Thread Martin Grigorov
Hi, On Mon, Mar 30, 2020 at 1:02 PM Luigi Tagliafierro wrote: > Hi everybody, > > we are experiencing an error : The bitbucket log > (/var/atlassian/bitbucket_home/log/launcher.log) constantly repeats this > error: > > "java.lang.IllegalArgumentException: An invalid domain [.code.doxee.com] > w

Re: Tomcat 9.31 PUT/POST Request receiving Partial Data

2020-03-31 Thread Martin Grigorov
t; on tomcat 9.0.31 but issue still persisted > 2. We tried to roll back java upgrade from 1.8.0.242 to 1.8.0.231 but > issue still persisted > 3. Enabled SSL debug log to verify if request gets dropped at but it > was not very helpful . > 4. FINALLY when we rolledback tomcat upgrade to 9.0.30 , same request > worked fine . > > We were basically getting 400 error for few requests while smaller request > always succeeds while larger request (100kb-180kb) frequently gets dropped > or partially processed. > Now we are using the 9.0.30 version until its resolved from tomcat side . > Have you tried 9.0.33 ? I believe this is fixed in .33. Martin

Re: Configure Tomcat for specific Urls on specific Port

2020-04-06 Thread Martin Grigorov
at are required > if we have configure this behavior in our tomcat. You could use a simple Servlet Filter that uses #getLocalPort() and #getRequestURI() to implement simple authorization strategy. There is nothing Tomcat specific in it. You can reuse it on any Servlet container. Regards, Martin > > > Tomcat Version Used :- 8.5.24 > OS Name:Linux > OS Version: 3.10.0-1062.12.1.el7.x86_64 > > Thanks & Regards > Vijay >

Re: javax.servlet.ServletContainerInitializer defined in jar not loading on Tomcat 8.5.51 and above

2020-04-06 Thread Martin Grigorov
we noticed that > Which versions of "above" you have tried ? Because there was a regression with SCI recently that have been fixed in 8.5.53 (I think. Better check the changelogs). 8.5.54 is being tested at the moment and if no issues are found it will be released i

Re: Is ARM64 architecture officially supported ?

2020-04-19 Thread Martin Grigorov
that the throughput on HTTPS is 3 times less than HTTP. It must be something in our setup, I believe. The SSL handshake should happen once per connection and then the connection should be reused with keep-alive. Once I feel more certain what is happening I will probably write a blog to share our e

Re: Is ARM64 architecture officially supported ?

2020-04-20 Thread Martin Grigorov
Hi Michael, On Sun, Apr 19, 2020 at 9:08 PM Michael Osipov wrote: > Am 2020-04-19 um 19:51 schrieb Martin Grigorov: > > Hi Emilio, > > > > On Fri, Apr 17, 2020 at 2:14 PM Emilio Fernandes < > > emilio.fernande...@gmail.com> wrote: > > > >> Hola T

Re: Losing session between calls from mobile phone

2020-04-27 Thread Martin Grigorov
ways creates a new session upon user request. > > Any idea why this happens? > Most probably there is a proxy in front of Tomcat in the cloud environment which does not properly forward the JSESSIONID cookie. Martin > > aj >

Re: Apache tomcat 9.0.6 Compatibility with Adopt openJDK

2020-04-27 Thread Martin Grigorov
OK. But as any other software there might be bugs in any part. You are recommended to use latest patch versions of both Tomcat and AdoptJDK though. Tomcat 9.0.6 is a bit old. Martin > > Thanks in Advance > > Regards, > Krishna > > > This message (including any attachments) con

Re: Losing session between calls from mobile phone

2020-04-27 Thread Martin Grigorov
On Mon, Apr 27, 2020 at 10:54 PM Martin Grigorov > wrote: > > > Hi, > > > > On Tue, Apr 28, 2020 at 2:23 AM AJ Chen wrote: > > > > > My web application using tomcat 6 can track user session (cookie by > > > default) for mobile and PC users in dev e

Re: Issue with AJP listener

2020-04-28 Thread Martin Grigorov
uot;) and another for IPv6 (for "::1"). Both listening on the same port. Martin > > Thank you, > Kishore >

Re: Issue with AJP listener

2020-04-28 Thread Martin Grigorov
On Tue, Apr 28, 2020 at 3:39 PM Satya Kishore Thumu wrote: > *@Naga Ramesh*, > we are using apache 2.4.41 and AJP connector 2.4.48. > > worker.ajp13.port=8009 > worker.ajp13.host=localhost > These are entries that we use on Tomcat server.xml and use the same > entries for

Re: suspected memory leak in io.netty.buffer.PoolChunk

2020-04-30 Thread Martin Grigorov
Hi, On Thu, Apr 30, 2020 at 10:04 AM Ragavendhiran Bhiman (rabhiman) wrote: > Hi All, > > When I analysed the heap dump the primary suspect shows that 54.21% > occupied by the from io.netty.buffer.PoolChunk memory leak. > io.netty.* is from Netty project (https://netty.io/index.html) It seems y

Re: Issue with AJP listener

2020-04-30 Thread Martin Grigorov
Hi, On Thu, Apr 30, 2020 at 11:15 AM Mark Thomas wrote: > On 29/04/2020 18:11, Christopher Schultz wrote: > > Mark, > > > > On 4/28/20 13:33, Mark Thomas wrote: > >> On 28/04/2020 16:30, Satya Kishore Thumu wrote: > >>> Hi Chris, Post the Ghostcat changes tomcat now listens only on > >>> ipv4 by

Re: Getting 404 error while accessing URL after deployment

2020-05-04 Thread Martin Grigorov
Hi, On Mon, May 4, 2020 at 5:02 PM Megha Agrawal wrote: > Hi > > I am trying to deploy my project on the tomcat server and access the URL > using browser. Project is deploying successfully on the server but unable > to access URL related to that project. Also, logs are not generating for > the d

Re: RST on TCP level sent by Tomcat

2020-05-18 Thread Martin Grigorov
Hi Arshiya, On Mon, May 18, 2020 at 2:15 PM Arshiya Shariff wrote: > Hi Mark, > Thank you for the quick response. > > Please provide us a little more clarity on the 3rd query : > > 3. We see that RST is sent by tomcat on receiving http2 request, when > does this happen ? > >>> When things go wro

Re: Query Related to org.apache.catalina.security.SecurityListener

2020-05-18 Thread Martin Grigorov
Hi, On Mon, May 18, 2020 at 7:38 PM Kushagra Bindal wrote: > Hi, > > We are planning to upgrade from apache tomcat from 8.5.24 to 8.5.53 > version. During this process I found that in catalina.sh file below line > which was commented in 8.5.24 version > > # Uncomment the following line to make t

Re: Tomcat 8.5 appends null characters

2020-05-19 Thread Martin Grigorov
Hi, On Tue, May 19, 2020 at 3:32 PM Tuukka Ilomäki wrote: > Dear collective wisdom, > as the EOL of Tomcat 7 is looming, we are migrating our legacy app from > Tomcat 7.0 to Tomcat 8.5. We deploy exactly the same war in both versions. > For some reason Tomcat 8.5 adds null characters to the end

Re: Query Related to org.apache.catalina.security.SecurityListener

2020-05-19 Thread Martin Grigorov
Hi Kushagra, On Tue, May 19, 2020 at 3:14 PM Kushagra Bindal wrote: > Thanks Martin! > > If I will keep on commenting this line, then what will be the impact of the > same on the application. > > Please let me know so that we can plan it accordingly. > Look at https://git

Re: Vulnerability flagged in Nessus Scan

2020-06-03 Thread Martin Grigorov
Hi, On Wed, Jun 3, 2020 at 5:53 AM FANG YAP wrote: > Resend > > On Wed, 3 Jun 2020, 10:10 FANG YAP, wrote: > > > Hi Tomcat, > > > > Nessus scanned and found issue in Apache Tomcat Port 8080 > > > > Port: 8080 > > Plugin Text: > > The server is not configured to return a custom page in the event

Re: Vulnerability flagged in Nessus Scan

2020-06-03 Thread Martin Grigorov
On Wed, Jun 3, 2020 at 11:14 AM FANG YAP wrote: > Hello Martin, > > It is to say that I have to declare something like this in web.xml file? > > > java.lang.Exception > /error.jsp > Better use the error-code ones from the StackOverflow link I gave you. Your approach wi

Re: Should Tomcat 10 enable response compression by default?

2020-06-09 Thread Martin Grigorov
; > At least in our case we have our own code to deal with this, considering > proxying, CDN, buggy browsers, etc. > I think the same - it should be opt-in feature. My 2c. Martin > > *Manuel Dominguez Sarmiento* > > On 09/06/2020 17:20, Mark Thomas wrote: > > Hi all,

Re: Junk characters in SOAP request after upgrade to tomcat 9.0.31

2020-06-12 Thread Martin Grigorov
Hi, On Fri, Jun 12, 2020 at 8:17 AM Naveen Kumar wrote: > Hi All, > > Can someone please help on this ? It is in production and affecting many > customers. Upgrading tomcat is a big task. > Any pointers will be really appreciated. > You say "If I upgrade tomcat to 9.0.35, the error disappears."

Re: [ANN] New committer: Raymond Augé

2020-07-02 Thread Martin Grigorov
Welcome Raymond! On Thu, Jul 2, 2020, 17:40 Mark Thomas wrote: > On behalf of the Tomcat committers I am pleased to announce that > Raymond Augé (rotty3000) has been voted in as a new Tomcat committer. > > Please join me in welcoming him. > > Kind regards, > > Mark > > --

Re: Tomcat relicts from previous installation - ubuntu

2020-07-09 Thread Martin Grigorov
Hi Christoph, On Thu, Jul 9, 2020 at 12:48 PM Christoph Kukulies wrote: > I’m resurrecting tomcat on a server (Ubuntu 18.04.4) on which I had been > running tomcat7 some time ago. > At the moment, when the system has started up, I’m seeing a process: > > root@kuku:~# ps ax | grep -i tomcat > 10

Re: Tomcat relicts from previous installation - ubuntu

2020-07-09 Thread Martin Grigorov
On Thu, Jul 9, 2020, 19:13 Christoph Kukulies wrote: > Is it an Ubuntu peculiarity that a tomcat.service gets installed? I > assume, I’m getting this automatically when doing an > apt-get install tomcat8, right? > Yes. All distros do that. You can download the tar.gz file from https://tomcat.apa

Re: Rewrite Valve Problem

2020-07-22 Thread Martin Grigorov
Hi Jerry, On Tue, Jul 21, 2020 at 2:39 AM Jerry Malcolm wrote: > > On 7/20/2020 5:00 PM, Mark Thomas wrote: > > On 20/07/2020 22:43, Jerry Malcolm wrote: > > > > > > > >>> Do you have a ROOT web application deployed? If not, this could be > >>> https://bz.apache.org/bugzilla/show_bug.cgi?id=645

Re: Memory leak in the PKCS11 how to fix the problem

2020-07-22 Thread Martin Grigorov
Hi Ragavendhiran, On Sat, Jul 18, 2020 at 3:55 PM Ragavendhiran Bhiman (rabhiman) wrote: > Hello All, > > > > I am seeing the memory leaks from tomcat apache in the following SSL path > using PKCS11. Attached the flame graph of memory possible memory leaks in > this area. > > Please check the at

Re: Memory leak in the PKCS11 how to fix the problem

2020-07-22 Thread Martin Grigorov
On Wed, Jul 22, 2020, 16:58 Ragavendhiran Bhiman (rabhiman) wrote: > Sorry Martin, > > My answers are inline. > Take a heap dump and analyze it! > Thanks & Regards, > Raghav > > On 22/07/20, 7:20 PM, "Ragavendhiran Bhiman (rabhiman)" > wrote: >

Re: Error in stopping application tomcat !!

2020-07-22 Thread Martin Grigorov
On Wed, Jul 22, 2020, 15:55 Kushagra Bindal wrote: > Hi Christopher, > > Did you get a chance to look into this? > > Please help us in resolving this issue. > > On Sat, Jul 18, 2020 at 11:26 AM Kushagra Bindal < > bindal.kusha...@gmail.com> > wrote: > > > Hi Chris, > > > > Additionally when tryin

Re: Error in stopping application tomcat !!

2020-07-23 Thread Martin Grigorov
Hi, On Thu, Jul 23, 2020 at 6:35 AM Kushagra Bindal wrote: > Hi Martin, > > These are the only two behaviors right now which I am getting on a > regular basis. > 1. During startup of the application and then shutdown > 2. Running application and then shutdown. > > Please

Re: Error in stopping application tomcat !!

2020-07-23 Thread Martin Grigorov
On Thu, Jul 23, 2020 at 3:10 PM Kushagra Bindal wrote: > Hi Martin, > > Due to our environment I was not able to use pastebin service. I have > taken different Thread dump during shutdown and attaching the same with > this email. > > Please review the same and let me know,

Re: Error in stopping application tomcat !!

2020-07-23 Thread Martin Grigorov
On Thu, Jul 23, 2020, 15:52 Kushagra Bindal wrote: > Thanks Martin. > > But with the old version i.e. 8.5.24 it is working smoothly. So, what could > be the problem? Or some specific property/configuration changes that need > to be made around this? > You will have t

Re: Best practices for profiling

2020-08-04 Thread Martin Grigorov
Hi, On Sun, Aug 2, 2020 at 1:09 AM calder wrote: > On Sat, Aug 1, 2020, 15:16 Aryeh Friedman > wrote: > > > On Sat, Aug 1, 2020 at 3:28 PM calder wrote: > > > > > On Sat, Aug 1, 2020 at 12:53 PM Aryeh Friedman < > aryeh.fried...@gmail.com > > > > > > wrote: > > > > > > > > What are the best pr

Re: Date of EOL and EOS for Tomcat8.5

2020-08-06 Thread Martin Grigorov
Hi, On Wed, Aug 5, 2020 at 5:59 PM Rajat Gupta wrote: > Hi, > > Please let us know the date of End Of Service and End Of Life for Tomcat > *8.5* > It is not known yet. At the moment there is a date set only for 7.0.x: https://tomcat.apache.org/tomcat-70-eol.html Newer versions will live several

How to upload Files larger than 2GB

2020-08-19 Thread Martin Knoblauch
20GB, but it did not help. Any advice is highly welcome. Just not - Don't use HTTP for uploading large files. It is the mechanism the application offers - Don't allow upload of large files. Unfortunately it is a valid use-case. Thanks in advance Martin -- -----

Re: How to upload Files larger than 2GB

2020-08-19 Thread Martin Knoblauch
is meant to provide > whatever limits it considers appropriate. > > Thanks for clarifying that. > I wonder if httpd/mod_jk is trying cache the entire request body before > forwarding. How is the request sent? With chunked-encoding or with a > content-

Re: Tomcat v9 - Insecure transport vulnerability reported by Qualys

2020-08-26 Thread Martin Grigorov
Hi, On Wed, Aug 26, 2020 at 7:53 AM Pratik Shrestha wrote: > Thanks for reply, > > Hi Peter - it complains on port 8443 which belongs to Tomcat. > > Hi Mark - Yes. making HTTP request on HTTPS is wrong. But this security > vulnerability is given to us by Qualys scan. It tries to post plain HTTP

Re: Tomcat 9 : Unable to specify wildcard care name in Host

2020-08-26 Thread Martin Grigorov
On Tue, Aug 25, 2020 at 3:01 PM Tom Chiverton wrote: > I'd like to propose some changes to the docs, but can not locate their > source to submit a request. > https://github.com/apache/tomcat/blob/master/webapps/docs/config/host.xml This is for Tomcat 10.x (master branch). > > For instance, in

Re: Release date of latest Tomcat version - 9.0.38

2020-09-02 Thread Martin Grigorov
Hi, On Wed, Sep 2, 2020, 17:46 Arshiya Shariff wrote: > Hi , > Thank you for your response . > Is there a way I can track when the version is released for Voting (or) > will I get notified in the Users list ? > You need to subscribe to the dev@ mailing list. > Thanks and Regards > Arshiya Sh

Re: HTTP2: Connections abruptly closed by sending GOAWAY

2020-09-09 Thread Martin Grigorov
Hi, On Wed, Sep 9, 2020 at 3:31 PM Arshiya Shariff wrote: > Thank you for the response Mark . > > > > Hi All, > > > > Can you please help us understand this behavior . > > The following is the sequence of events that is happening for a few > streams . > > Initially when the stream is opened , it

Re: How to Set Content Security Policy headers in Tomcat 8.5.x

2020-09-09 Thread Martin Grigorov
Hi, On Wed, Sep 9, 2020 at 8:54 PM Nitin Kadam wrote: > Hi All, > > Need to set the *Content security policy* header for Tomcat Web server > (8.5..x) which hosted on Windows server 2012, As per the internal security > team same is not a complaint > can you please help me setting CSP filters for

Re: Tomcat Processing Timer Question

2020-09-11 Thread Martin Grigorov
Hi, On Sat, Sep 12, 2020, 02:57 Eric Robinson wrote: > I'm not sure what you mean by measuring at the load balancer level. We're > using the jasper logs and those only exist on the tomcat server itself. I > must be misunderstanding your meaning. > He meant to use the LB's logs for the same. Wha

Re: Tomcat v9 - Insecure transport vulnerability reported by Qualys

2020-09-15 Thread Martin Grigorov
hi, On Tue, Sep 15, 2020 at 8:20 AM Pratik Shrestha wrote: > Hi Guys, > > Just wanted to know if anyone found an idea on fixing it or a workaround. > Did you find what is the expected behavior by Qualis ? > > Thanks > > Pratik. > > On Fri, Aug 28, 2020 at 10:46 AM Pratik Shrestha > wrote: >

Low throughput with HTTP2

2020-09-15 Thread Martin Grigorov
; 200 1126 i.e. there are no error codes, just 200. Vegeta reports the error with status code = 0. I think this just means that it didn't get a proper HTTP response but just TCP error. There are no errors in catalina.out. Are there any settings I can tune to get better throughput with HTTP2 ? Tomcat 10.0.0-M8. Regards, Martin

Re: Low throughput with HTTP2

2020-09-15 Thread Martin Grigorov
On Tue, Sep 15, 2020 at 2:37 PM Martin Grigorov wrote: > Hi, > > I am running some load tests on Tomcat and I've noticed that when HTTP2 is > enabled the throughput drops considerably. > > Here are the steps to reproduce: > > 1) Enable HTTP2, e.g. by commenting

Re: Low throughput with HTTP2

2020-09-15 Thread Martin Grigorov
Hi Mark, On Tue, Sep 15, 2020 at 3:34 PM Mark Thomas wrote: > On 15/09/2020 12:46, Martin Grigorov wrote: > > On Tue, Sep 15, 2020 at 2:37 PM Martin Grigorov > > wrote: > > > >> Hi, > >> > >> I am running some load tests on Tomcat and I&

Re: Low throughput with HTTP2

2020-09-15 Thread Martin Grigorov
Hi Chris, On Tue, Sep 15, 2020 at 5:09 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Martin, > > On 9/15/20 07:37, Martin Grigorov wrote: > > I am running some load tests on Tomcat and I

Re: Low throughput with HTTP2

2020-09-16 Thread Martin Grigorov
Hi Remy, On Tue, Sep 15, 2020 at 6:16 PM Rémy Maucherat wrote: > On Tue, Sep 15, 2020 at 5:08 PM Martin Grigorov > wrote: > > > Hi Mark, > > > > On Tue, Sep 15, 2020 at 3:34 PM Mark Thomas wrote: > > > > > On 15/09/2020 12:46, Martin Grigorov wrot

Re: tomcat warnings. [EXTERNAL]

2020-09-17 Thread Martin Grigorov
On Thu, Sep 17, 2020, 16:07 Beard, Shawn wrote: > Yes its 9.0.31.0 > The last 0 makes me think that you have installed Tomcat by using your OS package manager. Try with stock Tomcat downloaded from Apache servers. > [mwuser@usilg01-tcd003 ~]$ ./version.sh > Using CATALINA_BASE: /path/to/cata

Re: Low throughput with HTTP2

2020-09-18 Thread Martin Grigorov
Hi, On Wed, Sep 16, 2020 at 10:24 AM Martin Grigorov wrote: > Hi Remy, > > On Tue, Sep 15, 2020 at 6:16 PM Rémy Maucherat wrote: > >> On Tue, Sep 15, 2020 at 5:08 PM Martin Grigorov >> wrote: >> >> > Hi Mark, >> > >> > On Tue, Sep 15,

Re: Low throughput with HTTP2

2020-09-18 Thread Martin Grigorov
On Fri, Sep 18, 2020 at 10:48 AM Martin Grigorov wrote: > Hi, > > On Wed, Sep 16, 2020 at 10:24 AM Martin Grigorov > wrote: > >> Hi Remy, >> >> On Tue, Sep 15, 2020 at 6:16 PM Rémy Maucherat wrote: >> >>> On Tue, Sep 15, 2020 at 5:08

  1   2   3   4   5   6   7   8   9   10   >