Christian Schudt
Christian Schudt
Two comments: 1. Your server should *always* respond to IQ requests as per the Core XMPP specification: *An entity that receives an IQ request of type "get" or "set" MUST...
No I did not check that. I am afraid, I have no time to investigate into the lifecycle and classloading and garbarge collection stuff. Thanks for the hint with the...
Sorry, no. I am out of business with Openfire.
I'd be happy to see this feature as well. It's even trickier for my application: We have Java classes, `org.apache.cxf:cxf-java2ws-plugin` generates WSDL and your plugin generates the documentation from it....
I got it working by putting a custom SSLContext with TLSv1.2 in here (Tyrus 1.17): ``` SSLContext sslContext = SSLContext.getInstance("TLSv1.2"); sslContext.init(...) SslEngineConfigurator sslEngineConfigurator = new SslEngineConfigurator(sslContext); client.getProperties().put(ClientProperties.SSL_ENGINE_CONFIGURATOR, sslEngineConfigurator); ```
Had this issue, too, in Quarkus context, which uses inline MockMaker by default. I had some tests, which created mocks with SUBCLASS: `Mockito.withSettings().mockMaker(MockMakers.SUBCLASS)` It randomly failed the whole test suite...