[Bug 67065] Using "::1" to bind to all local addresses (IPV4 and IPV6)

2023-08-30 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=67065 Mark Thomas changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 65770] Make keys reload automatically

2023-08-30 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65770 --- Comment #8 from Mark Thomas --- I've been discussing this with the users recently and came up with the following approach. - Lifecycle listener that ships with Tomcat - Every X minutes (driven by background process but customisable so chec

[Bug 55477] Add a solution to map a realm name to a security role

2023-08-30 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=55477 Mark Thomas changed: What|Removed |Added Resolution|--- |DUPLICATE Status|NEW

[Bug 66665] Provide option to supply role mapping from a properties file

2023-08-30 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=5 Mark Thomas changed: What|Removed |Added CC||ste...@mayr-stefan.de --- Comment #3 fro

[Bug 56166] Suggestions for exception handling (avoid potential bugs)

2023-08-30 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=56166 Mark Thomas changed: What|Removed |Added Resolution|--- |WONTFIX Status|NEW

[Bug 67080] ImplicitObjectELResolverImpl.getValue() is slow

2023-08-30 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=67080 --- Comment #2 from Christopher Schultz --- I haven't studied what the Java compiler does with switch(String) statements, but I believe that numeric-based switch statements have two flavors: lookup vs table. One of them is faster but is only po

[Bug 67065] Using "::1" to bind to all local addresses (IPV4 and IPV6)

2023-08-30 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=67065 --- Comment #2 from Christopher Schultz --- :/ The "address" attribute for the AJP connector is documented[1] to have this behavior for the Java-based connectors. Is the documentation wrong, there, or it indeed possible to bind to "all local a

[Bug 67065] Using "::1" to bind to all local addresses (IPV4 and IPV6)

2023-08-30 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=67065 --- Comment #3 from Mark Thomas --- :: and 0.0.0.0 are special cases for "all addresses". There is no equivalent for "all local addresses" -- You are receiving this mail because: You are the assignee for the bug. -

[Bug 65770] Make keys reload automatically

2023-08-30 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65770 --- Comment #9 from Christopher Schultz --- (In reply to Mark Thomas from comment #8) > I've been discussing this with the users recently and came up with the > following approach. > > - Lifecycle listener that ships with Tomcat > - Every X mi

[Bug 67080] ImplicitObjectELResolverImpl.getValue() is slow

2023-08-30 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=67080 --- Comment #3 from John Engebretson --- I used javap to examine the bytecode of the reproducer - the full output is attached but the critical portion is below. In short, it hashes each constant and switches based on that hash. This is superi

[Bug 67080] ImplicitObjectELResolverImpl.getValue() is slow

2023-08-30 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=67080 --- Comment #4 from John Engebretson --- Created attachment 38938 --> https://bz.apache.org/bugzilla/attachment.cgi?id=38938&action=edit decompiled reproducer -- You are receiving this mail because: You are the assignee for the bug. ---

[Bug 67065] Using "::1" to bind to all local addresses (IPV4 and IPV6)

2023-08-30 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=67065 --- Comment #4 from Christopher Schultz --- Aha. What if the enhancement request were to be re-worded to be "use ::1 as an alias for both ::1 and 127.0.0.1 as appropriate"? Instead of "all local addresses" which may be a little ambiguous. "Loop

[Bug 67080] ImplicitObjectELResolverImpl.getValue() is slow

2023-08-30 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=67080 Anurag Dubey changed: What|Removed |Added CC||anura...@amazon.com -- You are receivi