Re: 7.0.3 release

2017-02-23 Thread Romain Manni-Bucau
did a few on my blog https://blog-rmannibucau.rhcloud.com/#/search;query=meecrowave and there is the website openwebbeans.apache.org/meecrowave strictly speaking it is mainly inspired from recent tomee embedded changes but simplifying it a lot and making the stack consistent/uniform (we can't at

Re: 7.0.3 release

2017-02-23 Thread hwaastad
Meecrowave Is that a new kid on the block? ;-) Seriously, seems cool, any blog articles yet? /hw -- View this message in context: http://tomee-openejb.979440.n4.nabble.com/7-0-3-release-tp4681145p4681150.html Sent from the TomEE Users mailing list archive at Nabble.com.

Re: 7.0.3 release

2017-02-23 Thread cocorossello
Ok, thanks -- View this message in context: http://tomee-openejb.979440.n4.nabble.com/7-0-3-release-tp4681145p4681149.html Sent from the TomEE Users mailing list archive at Nabble.com.

Re: CMP2 enitity get is making update query in Linux environment

2017-02-23 Thread Romain Manni-Bucau
Hmm xerces is know has impacting and useless these days, others shouldnt be modified compared to a plain tomee instance - we do it for you. Le 23 févr. 2017 20:04, "seenu.atluri" a écrit : > Thank you Romain > > When we look at it closely, our catilina.bat is

Re: CMP2 enitity get is making update query in Linux environment

2017-02-23 Thread seenu.atluri
Thank you Romain When we look at it closely, our catilina.bat is customized to have endorsed directory, but not catalina.sh. Here are the list of jars we have in endorsed. annotation-api.jar jaxb-api.jar xercesImpl.jar xercesImpl-2.9.0.jar Don't like the fact that these 4 jars could impact the

Re: 7.0.3 release

2017-02-23 Thread Romain Manni-Bucau
waiting for meecrowave release ATM (and try to avoid too much parallel releases since time is very limited these days) but if nobody has started tomee one once it meecrowave is over i can launch it. Don't hesitate to ping back if you see it not moving in some days. Romain Manni-Bucau

7.0.3 release

2017-02-23 Thread cocorossello
Hi, I would like to request, if possible, a 7.0.3 release. I read in other posts that there is nothing really pending for a (minor) new release. There are some bug fixes (most notable the CUTask one) that we have patched into our server, it's a minor inconvenience for us to work on snapshots,

Re: CMP2 enitity get is making update query in Linux environment

2017-02-23 Thread Romain Manni-Bucau
do you launch it the same way? openejb-javaagent is there in all cases? Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github | LinkedIn

Re: CMP2 enitity get is making update query in Linux environment

2017-02-23 Thread seenu.atluri
Yes Romain. Not only this we are seeing one more issue. In windows "fetch=EAGER" on one-to-many is working fine. When the same is deployed in Unix/Linux we are getting below exception. I googled it, there are posts discussing about Eager fetch is not supported when

Re: TomEE 7.0.2 and WebSphere MQ

2017-02-23 Thread bekirby
Thank you for the quick response. Adding the exclusions got rid of all the warnings and now everything is working as expected. -- View this message in context: http://tomee-openejb.979440.n4.nabble.com/TomEE-7-0-2-and-WebSphere-MQ-tp4681134p4681142.html Sent from the TomEE Users mailing list

Re: CMP2 enitity get is making update query in Linux environment

2017-02-23 Thread Romain Manni-Bucau
Hi, did you ensure you have the exact same database and datasource configuration on both OS? Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github |

CMP2 enitity get is making update query in Linux environment

2017-02-23 Thread seenu.atluri
Hi, We have legacy application with bunch of CMP2 beans migrated to TomEE from Weblogic. We have a getEntity business methods in SSB which are running in transaction. During transaction commit, OpenJPA is making update query with no values changed for all child entities (one-to-many relationship)

Re: TomEE 7.0.2 - increasing quartz tx database connections

2017-02-23 Thread Romain Manni-Bucau
2017-02-23 12:11 GMT+01:00 tschuler : > Thanks Romain for clarification. > Did the quartz handling switched to outside the transaction with > introduction of the "shaded" quartz access? > > No, never has been in the tx I think - if we run it in the tx then quartz meta

Re: TomEE 7.0.2 - increasing quartz tx database connections

2017-02-23 Thread tschuler
Thanks Romain for clarification. Did the quartz handling switched to outside the transaction with introduction of the "shaded" quartz access? -- View this message in context: http://tomee-openejb.979440.n4.nabble.com/TomEE-7-0-2-increasing-quartz-tx-database-connections-tp4681007p4681139.html

Re: TomEE 7.0.2 - increasing quartz tx database connections

2017-02-23 Thread Romain Manni-Bucau
Yes, summarized it could be said this way I think: "quartz doc is valid but tomee usage of quartz is 'internal' and outside the EJB". If you use yourself quartz from the EJB then you could use the CMT config but not the case using @Schedule IIRC. Romain Manni-Bucau @rmannibucau

Re: TomEE 7.0.2 - increasing quartz tx database connections

2017-02-23 Thread tschuler
Hi Romain! We configured quartz for using JDBC-JobStoreCMT (see http://www.quartz-scheduler.org/documentation/quartz-2.2.x/configuration/ConfigJobStoreCMT.html). It is suggested to be used if "applications are using JTA transactions (such as via EJB Session Beans) to perform their work." To my