Apache CXF Oauth2 Support In Tomee 8

2019-10-16 Thread chege
Hi, I have been using apache cxf oauth2 module in using spring and tomcat. Everything works fine. I can generate tokens and secure my services using Bearer tokens. Since Tomee 8 uses apache cxf to provide jaxrs functionalities, I decided to test ouath2 with apache tomee 8. I first checked in

Apache Cxf Webclient Doen't Work As Expected in Tomee 8

2020-03-03 Thread chege
I am trying to get jwk keyset from google for use with Apache Cxf OIDC and Jose Libs. The code works fine when I run it on a stand alone main method. |public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { final WebClient client =

How do I disable JAXRS for a single war file

2020-02-22 Thread chege
Hi, Ho do I go about disabling JAXRS auto configuration for a single war file deployed in Tomee? Thanks.

Tomee Maven Plugin - Download Transitive Dependecies

2020-04-11 Thread chege
} remove:openjpa- remove:eclipselink- Thanks, Chege.

JSON-B Adapter Not Invoked

2020-06-15 Thread chege
Hi, I am facing a problem where jsonb adapter is not invoked. Here is a simplified case. jaxrs application --- @ApplicationPath("/app") public class App extends Application{ } adapter public class B implements JsonbAdapter { @Override

JMS Redelivery issue with Spring Framework

2021-08-18 Thread chege
Hi, I have a sample project at https://github.com/chegeprogrammer/tomeetest that shows that the set redelivery policy is not respected. What I am doing wrong? Thanks.

Jaxrs Bean Validation - Tomee 8.0.10 - JDK 11 and JDK 8

2022-03-22 Thread chege
Hi, I have the following resource where bean validation is not working. What configuration is required to activate bean validation? @Path("/product") public class ProductApi {     @GET     public void demo(@NotNull @QueryParam("id") Integer id) {   //do something with the id.     } }

Re: Logging Abandoned Connection

2023-09-27 Thread chege
On Wed, 2023-09-27 at 11:32 -0700, Kean Erickson wrote: > Kean Hi Kean, Thanks for the response. Before removing abandoned connections I want to log the event.

Logging Abandoned Connection

2023-09-27 Thread chege
connection leaks logged? Chege.