RE: Tomcat 9.0.65 Failed stop jpf application in shell mode

2022-12-12 Thread alik alikov
Okay thank you I'll try it 12.12.2022, 11:00, Mark Thomas < mailto:ma...@apache.org ma...@apache.org > On 12/12/2022 04:40, alik alikov wrote: > When I try to shut down the application in the IDE console by 'q' application doesn't stopped. > > Thread Dump in attachments. > > Console log: > > dec

Re: Tomcat 9.0.65 Failed stop jpf application in shell mode

2022-12-12 Thread Mark Thomas
On 12/12/2022 04:40, alik alikov wrote: When I try to shut down the application in the IDE console by 'q' application doesn't stopped. Thread Dump in attachments. Console log: dec 08, 2022 12:59:21 PM org.apache.coyote.AbstractProtocol init INFO: Initializing ProtocolHandler

Re: Receiving HTTP (any version but 3 prefered) over UDP

2022-12-12 Thread Alex
Hi. On 11.12.22 17:44, Shawn Heisey wrote: On 12/10/22 15:15, Aryeh Friedman wrote: Is there any browser support for direct UDP sockets in any browser besides Chrome? I know WebRTC and Websockets force TCP. I know Chrome does support UDP but can find no evidence one way for the other browsers.

Re: apache-tomcat-9.0.70 >> JNDI look up fails in a different thread context class loader !!

2022-12-12 Thread Mark Thomas
The JNDI binding code is unchanged (apart from the removal of some deprecated methods) between 7.0.x and 9.0.x (and beyond that range). I think you'll need to do some debugging to figure out exactly why this isn't working but I suspect the custom class loader is at least a part of the reason.

RE: Receiving HTTP (any version but 3 prefered) over UDP

2022-12-12 Thread Hiran CHAUDHURI
CONFIDENTIAL & RESTRICTED You seem to know that domain. Would it make sense if you tried to create that HTTP/UDP support such that it could be integrated into future Tomcats? Hiran -Original Message- From: Aryeh Friedman Sent: Saturday, December 10, 2022 23:16 To: Tomcat Users List

Re: apache-tomcat-9.0.70 >> JNDI look up fails in a different thread context class loader !!

2022-12-12 Thread dineshk
Hi Mark , I don't think we should suspect the custom class loader here as its very old code and works fine across all application servers e.g. IBM WebSphere and JBoss EAP 7.X. The custom class loader  is required as our java classes are part of the Database which we need to load and hence

CVE-2021-43980 completely fixed?

2022-12-12 Thread Martin Garbe
Hello all, we use tomcat 9.0.62 in our environment and most likely hit the bug from CVE-2021-43980 (which should be fixed in this version). Why do we think that we hit this bug? * Since we refactored some e2e tests one test regularly fails because the client receives packets that should

RE: Tomcat 9.0.65 Failed stop jpf application in shell mode

2022-12-12 Thread alik alikov
Thanks a lot it's work 12.12.2022, 11:00, Mark Thomas < mailto:ma...@apache.org ma...@apache.org > On 12/12/2022 04:40, alik alikov wrote: > When I try to shut down the application in the IDE console by 'q' application doesn't stopped. > > Thread Dump in attachments. > > Console log: > > dec 08,

apache-tomcat-9.0.70 >> JNDI look up fails in a different thread context class loader !!

2022-12-12 Thread dineshk
Hi , We are trying to deploy our application on tomcat 9.0.70. Before the hibernate bootstraps in our application , we do change the "Current Thread Context Class Loader " in the running thread to our "Custom class loader" which is required. Changing the "Current Thread Context Class Loader " 

Re: apache-tomcat-9.0.70 >> JNDI look up fails in a different thread context class loader !!

2022-12-12 Thread dineshk
Hi Mark, We could reproduce this issue very easily with simple java program as well. Just before doing the JNDI look up , set  any custom class loader in the current thread as context class loader , this will fail the JNDI look up where as if we don't set any custom class loader , it works

RE: CVE-2021-43980 completely fixed?

2022-12-12 Thread jonmcalexander
Have you tested with a later release than 9.0.62? Dream * Excel * Explore * Inspire Jon McAlexander Senior Infrastructure Engineer Asst. Vice President He/His Middleware Product Engineering Enterprise CIO | EAS | Middleware | Infrastructure Solutions 8080 Cobblestone Rd | Urbandale, IA 50322

Re: apache-tomcat-9.0.70 >> JNDI look up fails in a different thread context class loader !!

2022-12-12 Thread Christopher Schultz
Dineshk, On 12/12/22 08:30, dineshk wrote: I don't think we should suspect the custom class loader here as its very old code and works fine across all application servers e.g. IBM WebSphere and JBoss EAP 7.X. The custom class loader  is required as our java classes are part of the Database

Re: apache-tomcat-9.0.70 >> JNDI look up fails in a different thread context class loader !!

2022-12-12 Thread Mark Thomas
On 12/12/2022 16:07, dineshk wrote: Hi Mark, We could reproduce this issue very easily with simple java program as well. Just before doing the JNDI look up , set  any custom class loader in the current thread as context class loader , this will fail the JNDI look up where as if we don't set