Ondro Mihályi
Ondro Mihályi
I found this about Tibco: https://docs.tibco.com/pub/api-exchange-gateway/2.2.0/doc/html/GUID-53F882E5-B5F4-4D7D-8E81-00D837EC22AA.html It looks like their name for the same mode is `EXPLICIT_CLIENT_ACKNOWLEDGE`, not the best name IMHO :)
I think it's better if there was some script that would do the formatting. Then everybody could run it and compare the results. FOr example, Google formatter (https://github.com/google/google-java-format) is a...
As I commented on https://github.com/jakartaee/concurrency/pull/212, I cannot support it. I believe behavior has never been clearly specified in the spec. GlassFish, which used to be the reference impl doesn’t comply...
This is probably duplicated and superceeded by https://github.com/jakartaee/jakarta.ee/issues/1675
@ivargrimstad , are there still any plans for filtering mechanism? It's been more than a year...
You can also try removing the custom trust store in GlassFish. The domain.xml contains this in JVM options: ``` -Djavax.net.ssl.trustStore=${com.sun.aas.instanceRoot}/config/cacerts.jks ``` Stop GlassFish, delete that line, and start GlassFish again....
I understand. But this is how GlassFish has always worked - by default, it only accepts certificates certificates in the cacerts file in the domain config directory. And this is...
What you can do is remove the `-Djavax.net.ssl.trustStore` JVM option in GlassFish's domain.xml, then GlassFish will use the trust store from the JDK. If you have a recent JDK, it...
Hi @hantsy , can you please instruct how to execute the test? I tried it but it seems that the cargo plugin isn't used when I run `mvn verify -Pglassfish`....
So I guess, @pzygielo , the issue is that Derby doesn't support the `WEEK` function? I don't see the `WEEK` function in the docs: https://db.apache.org/derby/docs/10.16/ref/index.html while all others are there.