RE: [Newsletter] Re: Migration step of jtaManaged flag in context resources

2018-05-14 Thread fabian-a . richter
Hi Mark and Romain, thanks for your replies! Is the resources.xml approach a portable solution? E.g. if we want to support Wildfly in the future, which approach is the most portable? Tomee.conf doesn’t sound too portable :) Thanks and best Fabian -Original Message- From: Mark

RE: [Newsletter] Re: [Newsletter] Re: Migration step of jtaManaged flag in context resources

2018-05-14 Thread fabian-a . richter
So bottom line: There is no portable DataSource definition technique as they are part of the container and hence container specific? -Original Message- From: Romain Manni-Bucau Sent: Monday, May 14, 2018 10:52 AM To: users@tomee.apache.org Subject: *EXT*

Migration step of jtaManaged flag in context resources

2018-05-09 Thread fabian-a . richter
Hi all, I haven been trying to migrate from TomEE 1.7.5 to 7.0.4 but I am currently stuck with the following problem: We have DataSources defined in webapp’s META-INF/context.xml as Tomcat and there _was_ a flag called jtaManaged which apparently doesn’t exist in Tomcat 8.5 anymore.

TomEE Stable and OpenJDK

2018-05-04 Thread fabian-a . richter
doesn’t necessarily mean the JDK/JREs are interchangeable, or are they? Thanks in advance for your answers! All the best, Fabian Richter smime.p7s Description: S/MIME Cryptographic Signature

Embedded TomEE 7.0.4 and Arquillian and TLS

2018-06-18 Thread fabian-a . richter
Hi, I am migrating to TomEE 7.0.4 and our old TLS config in arquillian.xml is not working any longer, the property property name="keystoreFile" seems to be ignored completely now, and ~/.keystore used instead. What is the replacement? Where do I find documentation on arquillian.xml

TomEE 7.0.4 and contextPath

2018-06-18 Thread fabian-a . richter
Hey, sorry to bother you guys again, but I am trying to change the context path of my webapp in TomEE 7.0.4 but the old method of setting smime.p7s Description: S/MIME Cryptographic Signature

RE: [Newsletter] Re: Missing Guava in TomEE 7.0.4 Plus?

2018-06-20 Thread fabian-a . richter
Is there a way to not "import shibboleth"? I am pretty sure we don’t need it... -Original Message- From: Romain Manni-Bucau Sent: Wednesday, June 20, 2018 2:49 PM To: users@tomee.apache.org Subject: *EXT* [Newsletter] Re: Missing Guava in TomEE 7.0.4 Plus? Hi, yes and no. We

RE: [Newsletter] Re: [Newsletter] Re: Missing Guava in TomEE 7.0.4 Plus?

2018-06-20 Thread fabian-a . richter
What do you mean with "leak"? We do not have it in our webapp, we only have guava but it is not picked up by the parent classloader :( -Original Message- From: Romain Manni-Bucau Sent: Wednesday, June 20, 2018 3:00 PM To: users@tomee.apache.org Subject: *EXT* [Newsletter] Re:

RE: [Newsletter] Re: [Newsletter] Re: [Newsletter] Re: [Newsletter] Re: Missing Guava in TomEE 7.0.4 Plus?

2018-06-22 Thread fabian-a . richter
Should I file a bug report? -Original Message- From: Romain Manni-Bucau Sent: Wednesday, June 20, 2018 3:52 PM To: users@tomee.apache.org Subject: *EXT* [Newsletter] Re: [Newsletter] Re: [Newsletter] Re: [Newsletter] Re: Missing Guava in TomEE 7.0.4 Plus? you are right, this is a bug.

JPA 2.0 compliant OpenJPA version in 2.1 based TomEE?

2018-08-03 Thread fabian-a . richter
Hi, the OpenJPA team released its JPA 2.1 release at the same time as the update for 2.0 (2.4.3) As TomEE 7 is Java EE 7 based (which includes JPA 2.1 if I am not mistaken) why didn’t the 7.0.5 release finally incude the (correct) JPA 2.1 compliant relase of OpenJPA? You guys do

RE: [Newsletter] Re: TomEE stderr and stdout

2018-07-23 Thread fabian-a . richter
HI sorry for the late reply, was on vacation. No, I didn’t try, but I switched back to running it as a service instead of using startup/shutdown.bat and now the files reappeared. Best Fabian -Original Message- From: Romain Manni-Bucau Sent: Friday, June 22, 2018 4:26 PM To:

RE: [Newsletter] Re: [Newsletter] Re: [Newsletter] Re: TomEE Performance

2018-09-10 Thread fabian-a . richter
Thx Jonathan, but we are using haveged since 2 months into development :) -Original Message- From: Jonathan S. Fisher Sent: Saturday, September 08, 2018 6:16 PM To: users@tomee.apache.org Subject: *EXT* [Newsletter] Re: [Newsletter] Re: [Newsletter] Re: TomEE Performance Hey one more

RE: [Newsletter] Re: [Newsletter] Re: TomEE Performance

2018-09-04 Thread fabian-a . richter
Hi Romain, thank you so much for your detailed feedback. After I created the second threaddump I had a look into it myself and came to the same conclusions. We will investigate further, and if there are any more TomEE related performance issues, I will get back in contact. Thanks all for the

TomEE stderr and stdout

2018-06-22 Thread fabian-a . richter
Hi, I am searching for a way to re-enable stdout and stderr logging in TomEE 7.0.4. The files tomee-stderr and tomee-stdout were created automatically in 1.7 but now they are gone. I need these files because log output that was in tomee-stdout after enabling kerberos loggin with

TomEE Performance

2018-09-04 Thread fabian-a . richter
Hey, we have been running some performance tests with our application (TomEE 7.0.5 based) and are stuck: Until 4 core VMs (or docker containers) we see a linear increase in performance, which is great and was anticipated. But after 4 cores, we barely get 10% (with 8 cores) more

RE: [Newsletter] Re: [Newsletter] Re: TomEE Performance

2018-09-04 Thread fabian-a . richter
Injecting? The jmeter was running during the threaddump. What do you mean with injecting? Is Singleton (Lock.READ) not even more of a bottleneck when it comes to multiple concurrent requests? IIRC we tried Singleton before, but not sure what the reason was why we went with @Stateless...

Re: TomEE Performance

2018-09-04 Thread fabian-a . richter
We have @Resource WebServiceContext webserviceContext; in our SOAP api class, that should not work with @Singleton, or am I mistaken? -Original Message- From: Jean-Louis Monteiro Sent: Tuesday, September 04, 2018 11:41 AM To: users@tomee.apache.org Subject: *EXT* [Newsletter] Re:

RE: [Newsletter] Re: TomEE Performance

2018-09-04 Thread fabian-a . richter
Like this: https://gist.github.com/TrustedGate/f670c079088404f42d69aabd409de7c4 ? -Original Message- From: Jean-Louis Monteiro Sent: Tuesday, September 04, 2018 8:38 AM To: users@tomee.apache.org Subject: *EXT* [Newsletter] Re: TomEE Performance Hi, Around SOAP, there are a couple of