Re: [PROPOSAL] Deprecate JAAS Realm in 10.0.x and remove in 10.1.x

2021-04-27 Thread Romain Manni-Bucau
Thinking out loud: can't it become a jaspic jaas impl delivered on central (this point is crucial), can be tomcat-jaas or so but not bundled by default in the distribution? Jaspic enables to do from the app so it becomes an option it seems which enables the use case so limit a lot the required "glu

[Bug 58464] servletRequest.getHeaderNames() returns all header names in lower case

2021-04-27 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=58464 Gonzalo changed: What|Removed |Added Resolution|WONTFIX |--- Status|RESOLVED

[Bug 65267] New: Implement mod_hedaers like filter

2021-04-27 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65267 Bug ID: 65267 Summary: Implement mod_hedaers like filter Product: Tomcat 10 Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement

[Bug 58464] servletRequest.getHeaderNames() returns all header names in lower case

2021-04-27 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=58464 Mark Thomas changed: What|Removed |Added Resolution|--- |WONTFIX Status|REOPENED

[Bug 65267] Implement mod_headers like filter

2021-04-27 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65267 Mark Thomas changed: What|Removed |Added Summary|Implement mod_hedaers like |Implement mod_headers like

Re: [PROPOSAL] Deprecate JAAS Realm in 10.0.x and remove in 10.1.x

2021-04-27 Thread Christopher Schultz
Mark, On 4/26/21 12:17, Mark Thomas wrote: In reviewing references to Java EE (and J2EE) remaining in the Tomcat 10 repo I found the following: JAASRealm is prototype for Tomcat of the JAAS-based J2EE authentication framework for J2EE v1.4, based on the href="https://www.jcp.org/en/jsr/detail

svn commit: r1889238 - in /tomcat/site/trunk: ./ docs/ xdocs/

2021-04-27 Thread violetagg
Author: violetagg Date: Tue Apr 27 16:16:14 2021 New Revision: 1889238 URL: http://svn.apache.org/viewvc?rev=1889238&view=rev Log: Updates (excluding docs) for 7.0.109 release Modified: tomcat/site/trunk/build.properties.default tomcat/site/trunk/docs/doap_Tomcat.rdf tomcat/site/trunk

svn commit: r1889240 - in /tomcat/site/trunk/docs/tomcat-7.0-doc: ./ annotationapi/ annotationapi/javax/annotation/ annotationapi/javax/annotation/security/ annotationapi/javax/annotation/sql/ api/ ap

2021-04-27 Thread violetagg
Author: violetagg Date: Tue Apr 27 16:26:31 2021 New Revision: 1889240 URL: http://svn.apache.org/viewvc?rev=1889240&view=rev Log: Update docs for Apache Tomcat 7.0.109 release. [This commit notification would consist of 65 parts, which exceeds the limit of 50 ones, so it was shortened to the s

svn commit: r47448 - /release/tomcat/tomcat-7/v7.0.108/

2021-04-27 Thread violetagg
Author: violetagg Date: Tue Apr 27 16:33:56 2021 New Revision: 47448 Log: Remove 7.0.108 Removed: release/tomcat/tomcat-7/v7.0.108/ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail

[ANN] Apache Tomcat 7.0.109 released

2021-04-27 Thread Violeta Georgieva
The Apache Tomcat team announces the immediate availability of Apache Tomcat 7.0.109. Apache Tomcat is an open source software implementation of the Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket technologies. This release contains a number of bug fixes and improvemen

mod_headers as a Filter

2021-04-27 Thread Mark Thomas
Hi all, I've started to look at this and I am struggling to see a way to implement something that looks like mod_headers as a Filter. Request headers are fairly simple. The process looks something like: a) take a copy of all the headers received b) apply all the rules for request headers c) w

[Bug 65262] Enable websocket endpoints to be IoC friendly (javaee integration at least)

2021-04-27 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65262 --- Comment #1 from Mark Thomas --- WebSocket endpoints already use the InstanceManager. https://github.com/apache/tomcat/blob/master/java/org/apache/tomcat/websocket/WsSession.java#L180 https://github.com/apache/tomcat/blob/master/java/org/a

Re: ApacheCon @Home 2021 Call for Presentations is closing soon (2021-05-03)

2021-04-27 Thread Christopher Schultz
All, This is a reminder to please submit your presentations for ApacheCon @Home for review before the deadline at 08:00 UTC on 2021-05-03. There have been just 5 presentations submitted to far for the Tomcat track, and only 2 that look look like they were "from the community" (as opposed to

Re: mod_headers as a Filter

2021-04-27 Thread Raymond Augé
Couldn't you add a callback/hook to commit() impl and trigger the rules during that callback/hook? But with that the filter is merely a shell for pushing rules into that callback/hook registry. - Ray On Tue, Apr 27, 2021 at 1:04 PM Mark Thomas wrote: > Hi all, > > I've started to look at this

Re: mod_headers as a Filter

2021-04-27 Thread Romain Manni-Bucau
Isnt the response buffer size giving a sufficient hint or callback like (dont rewrite before it is reached or body starts to be read)? Guess filter must force some size if not set but sounds like something to check, no? Le mar. 27 avr. 2021 à 21:32, Raymond Augé a écrit : > Couldn't you add a ca

[Bug 65262] Enable websocket endpoints to be IoC friendly (javaee integration at least)

2021-04-27 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65262 --- Comment #2 from romain.manni-bucau --- Hmm, endpoint api starts from a class on server side so should use the related instance manager instantiator and not only the injection "newInstance" probably. For an annotated endpoint you likely inje

Re: mod_headers as a Filter

2021-04-27 Thread Rémy Maucherat
On Tue, Apr 27, 2021 at 7:05 PM Mark Thomas wrote: > Hi all, > > I've started to look at this and I am struggling to see a way to > implement something that looks like mod_headers as a Filter. > > Request headers are fairly simple. The process looks something like: > a) take a copy of all the he