Re: Trouble passing through backslash in URL path

2025-01-25 Thread James Matlik
at, Jan 25, 2025, 05:35 Christopher Schultz < > ch...@christopherschultz.net> wrote: > > > Maxim, > > > > On 1/23/25 9:31 PM, Maxim Solodovnik wrote: > > > from mobile (sorry for typos ;) > > > > > > > > > On Thu, Jan 23, 2025, 23:00

Re: Trouble passing through backslash in URL path

2025-01-23 Thread James Matlik
dedSolidusHandling or encodedReverseSolidusHandling. > > RequestDsipatcher URLs are processed using the defaults. > > > > I have a test case that demonstrates various forms of this problem. I am > > currently working on a fix. > >

Re: Trouble passing through backslash in URL path

2025-01-21 Thread James Matlik
is area of the code would need to be aware of the encodedReverseSolidusHandling configuration as well. Thank you, James On Tue, Jan 21, 2025 at 1:20 PM Mark Thomas wrote: > On 21/01/2025 14:15, James Matlik wrote: > > Hello Mark, > > > > Yes, I would be available to test a sna

Re: Trouble passing through backslash in URL path

2025-01-21 Thread James Matlik
Hello Mark, Yes, I would be available to test a snapshot if this gets implemented. -James On Tue, Jan 21, 2025 at 8:17 AM Mark Thomas wrote: > On 18/01/2025 16:18, James Matlik wrote: > > I agree with everything you have said. As the config options stand today, > > the allowBac

Re: Trouble passing through backslash in URL path

2025-01-18 Thread James Matlik
Ideally, I wouldn't need to maintain a custom build of Tomcat indefinitely. Thanks, James On Fri, Jan 17, 2025, 10:00 AM Christopher Schultz < ch...@christopherschultz.net> wrote: > James, > > On 1/17/25 8:04 AM, James Matlik wrote: > > When I'm talking about path p

Re: Trouble passing through backslash in URL path

2025-01-17 Thread James Matlik
> A comment and a question. > > You are talking about the servlet path here. Path parameters are > something different > (.../path-segment;path-param-name=path-param-value/...) > > Which operating system are you using? > > Mark > > > > 16 Jan 2025 15:38:50 Ja

Re: Trouble passing through backslash in URL path

2025-01-16 Thread James Matlik
all to CoyoteAdapter.postParseRequest(...). -James On Wed, Jan 15, 2025 at 4:26 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > James, > > On 1/15/25 2:39 PM, James Matlik wrote: > > I have an API that needs Tomcat to accept both the escaped forward slash > > &#

Trouble passing through backslash in URL path

2025-01-15 Thread James Matlik
I have an API that needs Tomcat to accept both the escaped forward slash '/' (%2F) and escaped backslash '\' (%5C) and pass them through to the servlet (Spring application). This need exists to support path parameters with special URL relevant characters. I've been able to successfully get the forw