RE: IIOP tunelling over HTTP

2021-03-23 Thread COURTAULT Francois
Hello Jonathan, Thanks a lot :-) What about Micro-Profile support on TomEE at least 3.x ? Best Regards. -Original Message- From: Jonathan Gallimore [mailto:jonathan.gallim...@gmail.com] Sent: mardi 23 mars 2021 20:56 To: users@tomee.apache.org Subject: Re: IIOP tunelling over HTTP Hi

Re: setting up the hikari connection pool with tomee

2021-03-23 Thread Emmanuel Touzery
Hello, thank you for the answer! These links focus on the DataSource approach, which I've failed to make work as well. What I did get to work was through the persistence.xml, completely bypassing TOMEE's datasources (as described in the stackoverflow link I gave), but then I'm not sure wheth

Re: IIOP tunelling over HTTP

2021-03-23 Thread Jonathan Gallimore
Hi Francois It is tested and working on TomEE 8.0.6; I did specifically test it using this example: https://github.com/apache/tomee/tree/master/examples/ejb-remote-call-2 before replying. Do let us know if you run into issues and we'll be happy to help you out. Jon On Tue, Mar 23, 2021 at 5:39 P

Re: setting up the hikari connection pool with tomee

2021-03-23 Thread Zowalla, Richard
Hi, there were some discussions related to HikariCP on the lists a few days ago [1], [2], and [3]. I would try with [1] and [2]. Hope it helps. Gruss Richard [1] http://tomee-openejb.979440.n4.nabble.com/HikariCP-configuration-in-TomEE-td4678838.html [2] http://tomee-openejb.979440.n4.nabble.

RE: IIOP tunelling over HTTP

2021-03-23 Thread COURTAULT Francois
Hello Jonathan, Thanks for answering :-) I found this link http://tomee.apache.org/latest/docs/ejbd-transport.html but it seems rot really recent (reference to 1.7.x). Is this link quite similar with your answer ? We are using currently TomEE 8.0.6. Does it fully work and fully tested on this r

Re: IIOP tunelling over HTTP

2021-03-23 Thread Jonathan Gallimore
Hi TomEE does have the ability to do remote EJB calls over HTTP, although it isn't based on IIOP. This capability has actually been around in OpenEJB in the pre-TomEE days :-). In TomEE, you'll need to enable remote support, and configure a list of packages that are allowed to be serialized/deser

setting up the hikari connection pool with tomee

2021-03-23 Thread Emmanuel Touzery
Hello,     I'm trying to configure hibernate+hikarip connection pool for TOMEE.     I made it work without issues (at first sight), by configuring everything in the persistence.xml, basically as described in the answer to this stackoverflow question: https://stackoverflow.com/questions/49366

IIOP tunelling over HTTP

2021-03-23 Thread COURTAULT Francois
Hello everyone, Previously we were using Welogic. In one of our use-case, we performed a remote EJB (so using iiop) call to the our customer backend over the internet. Because of some firewall issue we might have, we use http tunneling iiop to perform this call. Do you know if we can do the sam