Re: Supported signature algorithms in Tomcat 8.5

2021-09-22 Thread Christopher Schultz
Sreevidya, On 9/22/21 12:25, Mandava, Sreevidya wrote: Tomcat version : 8.5.70 Attached my self -signed client cert(ecdsatestclient.crt_txt), self signed CA (rsatestca_original.crt_txt)output from openssl (defaultciphersuite.txt) my connector configuration(connector.txt) Your attachment

Supported signature algorithms in Tomcat 8.5

2021-09-22 Thread Mandava, Sreevidya
Hi Tomcat version : 8.5.70 Attached my self -signed client cert(ecdsatestclient.crt_txt), self signed CA (rsatestca_original.crt_txt)output from openssl (defaultciphersuite.txt) my connector configuration(connector.txt) Problem: We have a client that is connecting to tomcat with an ECC cert

Re: Tomcat SSL - Issue

2021-09-22 Thread Niranjan Babu Bommu
port where server is listening ssl(8443) and ipaddres of server where tomcat is running, expect output like this starting Nmap 6.40 ( http://nmap.org ) at 2021-09-22 14:35 EDT Nmap scan report for 12.0.0.1 Host is up (0.35s latency). PORT STATE SERVICEVERSION 8443/tcp open https-alt?

Re: Tomcat SSL - Issue

2021-09-22 Thread Christopher Schultz
Niranjan, On 9/21/21 19:23, Niranjan Babu Bommu wrote: Another way you get supported is TLS and the cipher suite. nmap -sV --script ssl-enum-ciphers -p nmap -sV --script ssl-enum-ciphers -p nmap is great, but it won't tell you what your Java client's capabilities are. -chris On

RE: Tomcat SSL - Issue

2021-09-22 Thread Kumawat, Priyanka
Hi Niranjan , Thankyou. The script here on the below command will be the ssltest script that Chris have given ? Also IP address will be the IP of the server .? nmap -sV --script ssl-enum-ciphers -p https://clicktime.symantec.com/3Cx1tBjB9n6EQyoUQjHJNWU7Vc?u=https%3A%2

Re: mirrors are broken?

2021-09-22 Thread Mark Thomas
On 22/09/2021 10:00, jean-frederic clere wrote: Hi, https://tomcat.apache.org/download-90.cgi gives me: +++ Error! /var/www/dyn/closer.lua:322: attempt to index local 'cdn_uri_check' (a nil value) +++ Have we break something with the mirror logic? Or is my favorite mirror broken?

mirrors are broken?

2021-09-22 Thread jean-frederic clere
Hi, https://tomcat.apache.org/download-90.cgi gives me: +++ Error! /var/www/dyn/closer.lua:322: attempt to index local 'cdn_uri_check' (a nil value) +++ Have we break something with the mirror logic? Or is my favorite mirror broken? -- Cheers Jean-Frederic

Re: Tomcat 9.0 async read becomes blocking

2021-09-22 Thread Mark Thomas
On 22/09/2021 08:22, Goldengate liu wrote: Hi Chris, Servlet 3.1 spec defines that ServletInputStream can be used to read as non-blocking way as long as there is data ready locally by calling isReady method and check the ready condition before calling read, and read should throw

Re: Tomcat 9.0 async read becomes blocking

2021-09-22 Thread Goldengate liu
>> Hi Chris, >> Servlet 3.1 spec defines that ServletInputStream can be used to read as >> non-blocking way as long as there is data ready locally by calling isReady >> method and check the ready condition before calling read, and read should >> throw IllegalStateException if called by caller

Re: Tomcat 9.0 async read becomes blocking

2021-09-22 Thread Mark Thomas
On 21/09/2021 23:01, Javateck wrote: Hi Chris, Servlet 3.1 spec defines that ServletInputStream can be used to read as non-blocking way as long as there is data ready locally by calling isReady method and check the ready condition before calling read, and read should throw