Re: Trouble passing through backslash in URL path

2025-01-15 Thread Christopher Schultz
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 '/' (%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 chara

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

Re: Openssl Connector configuration for Dynamic Client Authorization does not work.

2025-01-15 Thread Christopher Schultz
Timothy, On 1/14/25 4:58 PM, Timothy Resh wrote: What do you mean when you say "dynamic client auth"? > Dynamic in so far as you drop an intermediate ca and hash link into a directory, to allow tomcat to recognise the new client. Ex.. DOD CAC cards. I believe you indicated using the caCertifi

Capturing the response entity from an include/forward

2025-01-15 Thread Christopher Schultz
All, I have a servlet that needs to use another one to generate some content, then post-process it. My current pseudo code looks like this, which is rather ugly IMO: URL url = new URL("http://localhost:port/path/to/resource";); HttpURLConnection conn = url.openConnection(); InputStream in = c