Re: TomEE 7.0.1 with Windows

2016-07-28 Thread Romain Manni-Bucau
where > I'm forced to use the standard folders of Windows. > > > Romain Manni-Bucau wrote > > c:\pathwithoutspace\tomee should work AFAIK > > > > > > Romain Manni-Bucau > > @rmannibucau https://twitter.com/rmannibucau; | Blog > > https://blog-rmannibuc

Re: Problem with Manager GUI

2016-07-30 Thread Romain Manni-Bucau
@Eduardo: is the behavior you see different from a plain tomcat 8.5? Normally we fully rely on it. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com> | Github &

Re: TomEE 7.0.1 with Windows

2016-08-01 Thread Romain Manni-Bucau
2016-08-01 15:43 GMT+02:00 Joerg Jans <joerg.j...@gmail.com>: > Romain Manni-Bucau wrote > > Ok, was just to ensure it was not a more serious issue. > > > > Do you want to work on a patch? > > Do you need more than the batches I attached in the original pos

Re: Migration of Spring bean web application

2016-08-11 Thread Romain Manni-Bucau
Hi, If i get it right you want to use spring in tomee? if so you need to NOT use WEB-INF/beans.xml cause it is a EE descriptor which needs to respect EE namespace (obviously not the case of spring application contexts ;)). Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibu

Re: JTA Transcation Manager configuration in Tomee

2016-08-13 Thread Romain Manni-Bucau
Use java:comp/TransactionManager or openejb:Resource/{resource or txmgr id in tomee.xml} In spring you can also use org.apache.openejb.OpenEJB.getTransactionManager() returned value - it is a static method so configurable in appctx.xml Le 13 août 2016 14:43, "sureshshine"

Re: TomEE 7.0.1 with Windows

2016-07-18 Thread Romain Manni-Bucau
c:\pathwithoutspace\tomee should work AFAIK Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> | LinkedIn &

Re: Exposing RESTful web services from WEB-INF/lib

2016-07-16 Thread Romain Manni-Bucau
renamed the jar to just actuator.jar, it > > worked! Awesome! > > > > Cheers, > > Ivan > > > > On Sat, Jul 16, 2016 at 5:41 PM, Romain Manni-Bucau < > rmannibu...@gmail.com > > > > > wrote: > > > > > Should clearly but not if called

Re: Web service Example+request

2016-07-11 Thread Romain Manni-Bucau
at startup Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> | LinkedIn <https://www.linkedin.com/in/rman

Re: ApplicationComposer and overriding default jndi naming strategy

2016-06-27 Thread Romain Manni-Bucau
Hi if you set my-ear as name to the Application or ApplicationModule and my-ejb to the EjbJar or EjbModule then you will end up with this naming. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpres

[RESULT][VOTE] Apache TomEE 7.0.1

2016-06-27 Thread Romain Manni-Bucau
And with my +1 this vote pass with 3 +1 bindings (Mark, JL and me) and 4 +1 (Gregory, Daniel, Felipe, Jeff) I'll continue with the release steps thanks too all people having answered! Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <htt

Re: New contributor

2016-06-28 Thread Romain Manni-Bucau
Awesome news Diego! Welcome onboard ;). Let us know if you need any help to get started or anything Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com&g

Re: Minimal components in TomEE Embedded Server

2016-07-05 Thread Romain Manni-Bucau
t; > Anything public, even a github repo is fine, just needs to be on a trusted server (asf or github for instance). If ODE has PR integration it can also be an option. > regards, > sathwik > > On 2016-07-05 15:47 (+0530), Romain Manni-Bucau <rmannibu...@gmail.com> >

Re: Remote JNDI look up to ConnectionFactories is failing

2016-07-05 Thread Romain Manni-Bucau
1. that's the way 2. no for the mentionned reasons. The way to solve it would likely be to write a remote EJB acting as a proxy and getting injected the factory and queue or equivalent. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <htt

Re: Remote JNDI look up to ConnectionFactories is failing

2016-07-05 Thread Romain Manni-Bucau
be slow or a shared client config which would likely be inaccurate) Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rm

Re: TomEE Server not getting started

2016-07-05 Thread Romain Manni-Bucau
Then that's another jar. if you have bash you can run: user@machine $ for i in lib/*.jar; do if [ "$(jar tf $i | grep MANIFEST.MF)" == "" ]; then echo $i; fi done Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau

Re: Remote JNDI look up to ConnectionFactories is failing

2016-07-06 Thread Romain Manni-Bucau
Ok so then compare the instances you used and the one you get with the config you set up. There is probably a difference there. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibuca

Re: Tomme+ and JMS with JNDI configuration

2016-07-22 Thread Romain Manni-Bucau
Add prefix openejb:Resource/ or java:openejb/Resource/ to id value for spring lookup Le 22 juil. 2016 12:19, "sureshshine" a écrit : > Thanks much for your reply. > > I need one more clarification and added a jndi resource in tomee.xml as > follows, > > >

Re: TomEE Server not getting started

2016-06-29 Thread Romain Manni-Bucau
Hi think it has been treated multiple times on the list but it means a jar misses a META-INF/MANIFEST.MF Just exclude this jar from the scanning and this exception will disappear. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rh

Re: TomEE Server not getting started

2016-06-29 Thread Romain Manni-Bucau
PS: should be fixed on tomee 7.0.1 Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> | LinkedIn &

Re: TomEE Server not getting started

2016-06-29 Thread Romain Manni-Bucau
2016-06-29 16:08 GMT+02:00 Dignesh : > Hi, > I haven't understood the answer. > > 1.Does it mean every jar should have META-INF/MANIFEST.MF ? > yes was a (now fixed) bug in tomcat > 2.How to exclude the jar from the scanning - Any configuration available ? > easiest is

Re: JTA Transcation Manager configuration in Tomee

2016-08-16 Thread Romain Manni-Bucau
2016-08-16 7:36 GMT+02:00 sureshshine : > Thanks for you reply .. > > I tried to type="java:comp/TransactionManager"> and I got the below exception > > Type is the...type so as written in the error message "TransactionManager". There is a way to hack it there but the

Re: Minimal components in TomEE Embedded Server

2016-08-16 Thread Romain Manni-Bucau
Let us know if you need any help on particular topics not yet opened on another thread Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com> | Github <https://g

Re: Issue with "MDB topic"

2017-02-01 Thread Romain Manni-Bucau
Hi what's the server is doing? did it see the connection? Do you have a full client+server sample we can run to reproduce? (you can inspire from https://github.com/apache/tomee/tree/master/examples/client-resource-lookup-preview maybe if you need help to setup a project) Romain Manni-Bucau

Re: OpenEJB custom configuration factory & bval.in-container=true

2017-02-07 Thread Romain Manni-Bucau
Hi 2017-02-07 10:31 GMT+01:00 Svetlin Zarev : > Hello, > > In *one* of the configuration factory constructors a system property is > set: > > public ConfigurationFactory() { > this(!shouldAutoDeploy()); > System.setProperty("bval.in-container", "true"); >

Re: OpenEJB custom configuration factory & bval.in-container=true

2017-02-07 Thread Romain Manni-Bucau
ValCdiFilter implementation which is set by default whatever this system property is > Svetlin > > 2017-02-07 11:41 GMT+02:00 Romain Manni-Bucau <rmannibu...@gmail.com>: > > > Hi > > > > 2017-02-07 10:31 GMT+01:00 Svetlin Zarev <svetlin.angelov.zarev@gmail. &g

Re: TomEE 7.02 , and JMS 2 Bug

2017-02-08 Thread Romain Manni-Bucau
Hi Yann, does it occur on master? not sure i see the path it can Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibuc

Re: Deploy MDB(topic) in non clustered way

2017-02-05 Thread Romain Manni-Bucau
Le 5 févr. 2017 11:06, "Dignesh" a écrit : So does it mean , there is a no way via a configuration were we can restrict messages being replicated on all nodes. ? You chose a topic so you requested to distribute the messages to all nodes explicitely And how would using

Re: Deploy MDB(topic) in non clustered way

2017-02-05 Thread Romain Manni-Bucau
Hmm, why not using another queue/topic or selector? Le 5 févr. 2017 10:32, "Dignesh" a écrit : > Below is the activation property element configured in my ejb-jar.xml file. > > > > > destination config-property-name> > > MyTopic

Re: TomEE JMS messages not replicated across all the nodes in cluster

2017-01-26 Thread Romain Manni-Bucau
Hi have a look on activemq configuration side. If you don't ensure AMQ configuration is clusterized then you have 2 split instances Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibuca

Re: TomEE JMS messages not replicated across all the nodes in cluster

2017-01-26 Thread Romain Manni-Bucau
server.xml and context.xml are unrelated to AMQ, you need to either use the broker url to setup the cluster (uri syntax is a bit tricky but it is doable since 7.0.2 IIRC) or activemq.xml syntax (you need to add a few jar to tomee lib for it to work). Romain Manni-Bucau @rmannibucau <ht

Re: TomEE JMS messages not replicated across all the nodes in cluster

2017-01-26 Thread Romain Manni-Bucau
but you need to add needed dependencies like spring etc in tomee/lib. Think our doc is no more up to date for that (we rely on very old deprecated versions) Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Ol

Re: hi, using OpenEJB & interested to contribute a little towards the docs?

2017-01-26 Thread Romain Manni-Bucau
of that behavior but just referenced where to find them up to date Hope it helps Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibuc

Re: Issue with TomEE startup

2017-01-27 Thread Romain Manni-Bucau
Hi your dispatcher is a tomcat <= 8.0 interceptor, tomcat 8.5 doesn't provide it anymore (see https://tomcat.apache.org/tomcat-8.5-doc/config/cluster-interceptor.html) Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com

Re: Issue with TomEE shutdown

2017-02-21 Thread Romain Manni-Bucau
Hi seems there is a ScheduledThreadPoolExecutor not shutdowned. Is it in your application or dependency stack? Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com&g

Re: Log files are not generated in %TOMEE_HOME%\logs folder

2017-02-18 Thread Romain Manni-Bucau
Maybe check http://tomee-openejb.979440.n4.nabble.com/openEJB-log4j-td4670622.html Le 18 févr. 2017 12:00, "Dignesh" a écrit : > I have attached the log4j.jar present in the lib directory. Also attached > the > system.properties file > system.properties >

Re: Log files are not generated in %TOMEE_HOME%\logs folder

2017-02-18 Thread Romain Manni-Bucau
Log4j support a system property to set it so yes if you use the extrrnal property. Le 18 févr. 2017 12:21, "Dignesh" a écrit : > Hi Romain, > I dont want the log4j.xml file to be placed in lib folder.Is there any > configuration setting that I can use so that logging is

Re: Log files are not generated in %TOMEE_HOME%\logs folder

2017-02-18 Thread Romain Manni-Bucau
Hi Did you add the right log4j jars? Also by default for log4j1, logging.properties will be loaded as a log4j.properties. we have an openejb.log4j.external flag to use log4j.xml if im not mistaken on the property name. Le 18 févr. 2017 11:48, "Dignesh" a écrit : > Hi, >

Re: Customizing the dynamic deployer chain

2017-02-24 Thread Romain Manni-Bucau
Hi what's the actual goal? (= why do you need to extend ConfigurationFactory?) Wonder if an event can't solve it if not already there. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibuca

Re: javaee-api releases

2017-02-15 Thread Romain Manni-Bucau
Hi 2017-02-15 14:34 GMT+01:00 Mark Struberg : > Hi folks! > > Just noticed that we did not release a javaee-api.jar with 7.0.2. > That feels kind of wrong to me (personal opinion so far). > > Until now I just had a > > > nnn > > in my pom and used this version for

Re: TomEE 7.02 , and JMS 2 Bug

2017-02-13 Thread Romain Manni-Bucau
we got some fixes on that, hopefully it fixed it as well, any hope you test on 7.0.3-SNAPSHOT? Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com> | Github <https://g

Re: ClassNotFoundException: com.sun.el.ExpressionFactoryImpl in embedded Arquillian container

2017-01-18 Thread Romain Manni-Bucau
Hi you used javax API, use org.apache.tomee:javaee-api or tomcat one or force through the corresponding system property the implementation to use The default is just not the one which is used in tomee cause of that dependency. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibu

Re: JAX-RS deployment in TomEE

2017-01-16 Thread Romain Manni-Bucau
Hi Tomee builds an implicit Application. You can customize the mapping with @ApplicationPath or Application servlet mapping. Except the implicit part all is standard and jaxrs doesnt require any web.xml config by itself. Le 16 janv. 2017 13:04, "sudhish81" a

Re: Migration of Spring bean web application

2016-08-22 Thread Romain Manni-Bucau
tempted to say it is a spring question (so not the right forum) that said spring uses by default applicationContext.xml name but you likely configured beans.xml in web.xml or somewhere else Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <htt

Re: Migration of Spring bean web application

2016-08-22 Thread Romain Manni-Bucau
ing care of the EE integration and not EE taking care of spring integration. > Thanks, > Aruna. > > On Thu, Aug 11, 2016 at 7:37 PM, Romain Manni-Bucau <rmannibu...@gmail.com > > > wrote: > > > Hi, > > > > If i get it right you want to use spring in tomee?

Re: Customizing the dynamic deployer chain

2017-02-27 Thread Romain Manni-Bucau
more hacky switching jpa provider or datasource factory for instance, dont recall the details). Thinking to it this last option can be saner: using template or resource provider (globally set) you can make the datasource using your custom config. Can be worth a try. Romain Manni-Bucau

Re: Customizing the dynamic deployer chain

2017-02-27 Thread Romain Manni-Bucau
try this: @Observes Object you will spy them all ;) Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> | LinkedIn &

Re: 7.0.2 around the corner?

2016-09-02 Thread Romain Manni-Bucau
@Adam: isnt it fixed in OWB 1.7.0? Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> | LinkedIn &

Re: 7.0.2 around the corner?

2016-09-02 Thread Romain Manni-Bucau
think it was the id generation issue which was causing this one but if you can test feedback would be very welcomed Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpres

Re: 7.0.2 around the corner?

2016-09-02 Thread Romain Manni-Bucau
ok, will ping myfaces then Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> | LinkedIn <https://www.

Re: reworking the website?

2016-09-05 Thread Romain Manni-Bucau
ng/blob/master/src/main/jbake/content/community/contributors.adoc ) > -- > David Blevins > http://twitter.com/dblevins > http://www.tomitribe.com > > > On Sep 2, 2016, at 10:18 AM, Romain Manni-Bucau <rmannibu...@gmail.com> wrote: > > > > added a basic example s

Re: PoolExhaustedException in logs

2016-09-06 Thread Romain Manni-Bucau
Hi we identified few cases where we can leak connection with this mode (JTA + tomcat-jdbc), maybe try to switch to dbcp setting DataSourceCreator = dbcp. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpres

Re: PoolExhaustedException in logs

2016-09-06 Thread Romain Manni-Bucau
only that line in datasource properties (side note: should be fixed on master/next release) Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com> | Github &

Re: PoolExhaustedException in logs

2016-09-06 Thread Romain Manni-Bucau
datasource properties = properties of the datasource = in block Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibuc

Re: reworking the website?

2016-09-02 Thread Romain Manni-Bucau
prevent to organize them later but we need to find a convention then (page is generated) Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com> | Github <https://g

7.0.2 around the corner?

2016-09-02 Thread Romain Manni-Bucau
of these releases I can work on that next week if it we have them all or end of the month. Wdyt? Anything you'd like to get in? Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpres

Re: PoolExhaustedException in logs

2016-09-07 Thread Romain Manni-Bucau
don't pass user/password to hibernate hibernate needs to use datasource.getConnection() and not datasource.getConnection(user, pwd) Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpres

Re: NameNotFoundException during ejb lookups

2016-09-08 Thread Romain Manni-Bucau
are defined). Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> | LinkedIn <https://www.linkedin.com/in/rman

Re: tomee git commit: useless code since done in the connection close

2016-08-29 Thread Romain Manni-Bucau
t; > > > Project: http://git-wip-us.apache.org/repos/asf/tomee/repo > > Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/8514d47c > > Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/8514d47c > > Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/8514d47c

Re: Issue in starting TomEE as window Service

2016-09-01 Thread Romain Manni-Bucau
Hi did you install it as an admin? see http://tomcat.apache.org/tomcat-8.5-doc/windows-service-howto.html doc (search for UAC string) Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpres

Re: Issue in starting TomEE as window Service

2016-09-01 Thread Romain Manni-Bucau
ok, then only issue i can think about is a previous tom* (tomcat or tomee) service you didnt deinstall before installing this one Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpres

Re: OpenEJB/TomEE static code analysis

2016-09-14 Thread Romain Manni-Bucau
Tomee is java 7 for 7.x by spec do java 8 is not an option On the fixes: ensure to unit test each non trivial fix but you can put all the "same" category ones in the same pr. Like "ensure streams are closed". Side note on this particular one: since we pool connections sometimes closing the stream

Re: 7.0.2 around the corner?

2016-09-15 Thread Romain Manni-Bucau
zkgz). > > With Tomcat and OWB both recently released is there anything else needed > for TomEE 7.0.2? > > On Fri, Sep 2, 2016 at 10:43 AM, Romain Manni-Bucau <rmannibu...@gmail.com > > > wrote: > > > ok, will ping myfaces then > > > > > > Romain Manni

Re: String equality checks in JAXB classes

2016-09-16 Thread Romain Manni-Bucau
Le 16 sept. 2016 09:27, "Svetlin Zarev" a écrit : > > Hi, > > The static code analysis revealed that in all JAXB classes strings are > being compared using == and !=. Obviously TomEE works, so this is not such > a big issue, but I cannot explain to myself why it

Re: 7.0.1 TomEE plus shutdown fails intermetantly

2016-10-06 Thread Romain Manni-Bucau
Hi Dignesh, this is due to not daemon threads not stopped at shutdown. This Thread-42 is very suspicious To know what happens just take a thread dump (jps -> identify Bootstrap process pid then jstack ) Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <

Re: 7.0.1 TomEE plus shutdown fails intermetantly

2016-10-06 Thread Romain Manni-Bucau
2016-10-06 12:03 GMT+02:00 Dignesh : > Hi Romain, > > Just curious to know ..how you found it is thread-42 from screenshot ? > > First WARNING ;) > > Attached are the thread dump and latest screen shot of shutdown getting > blocked. ThreadDump.txt >

Re: OpenEJB/TomEE static code analysis

2016-09-20 Thread Romain Manni-Bucau
merged 2 PRs Svetlin, build will run on https://ci.apache.org/builders/tomee-trunk-ubuntu soon Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com> | Github &

Re: ClassNotFoundException: com.sun.el.ExpressionFactoryImpl in embedded Arquillian container

2016-08-23 Thread Romain Manni-Bucau
Yes, not using tomcat el api - shaded in tomee javaee-api - you get glassfish defaults. Ensure to use org.apache.tomee:javaee-api Le 23 août 2016 23:28, "John D. Ament" a écrit : > Don't forget, TomEe will ship Geronimo jars. If you reference Javax.el > you'll get

Re: ClassNotFoundException: com.sun.el.ExpressionFactoryImpl in embedded Arquillian container

2016-08-23 Thread Romain Manni-Bucau
) > > > at > > > org.apache.webbeans.config.WebBeansContext.( > > > WebBeansContext.java:116) > > > > > > I read elsewhere that this might be caused by different versions of CDI > > on > > > the server and in the webapp. But what did I do to make this violation

WebBeansContext.currentInstance() change

2016-08-24 Thread Romain Manni-Bucau
CDI is not active and leak it which was the case before if you deploy another webapp with CDI activated in embedded mode. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpres

Re: How to configure DLQs and Redelivery policies (default and queue specific) in tomee.xml

2016-08-24 Thread Romain Manni-Bucau
). If so you need to configure the broker using xbean-spring setup which would lead to configuring exactly like it is documented on activemq website once you added the few needed jars. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rh

Fwd: tomee git commit: TOMEE-1951 making JPA CDI aware

2016-10-03 Thread Romain Manni-Bucau
controlled compared to what we do today which is quite predictable. Happy to get help on that topic if you see a small hole we can use to make it smoother. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Ol

Re: 7.0.2 around the corner?

2016-10-27 Thread Romain Manni-Bucau
quick update: jcs vote should end ~these days and bval is ready to release so will let them end of the week and target next week for tomee (kind of last chance to be onboard since we reached the mandatory dependency upgrades ;)) Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibu

[VOTE] Apache TomEE 7.0.2

2016-11-06 Thread Romain Manni-Bucau
of course! [ ] +0 just to say hi [ ] -1 no, ${blocker} is blocking because ${cause} Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibuc

Re: [VOTE] Apache TomEE 7.0.2

2016-11-07 Thread Romain Manni-Bucau
my own +1, validated the expected JAX-RS 2 fix works well, yeah! Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibuc

Re: [VOTE] Apache TomEE 7.0.2

2016-11-07 Thread Romain Manni-Bucau
PS: should be working for 7.0.3 ( https://issues.apache.org/jira/browse/TOMEE-1965) but maybe also check why you serialize an entity manager (this never sounds safe since it breaks several parts of JPA with most providers) Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> |

Re: TOMEE-1962 - Deprecate LocalInitialContextFactory

2016-10-24 Thread Romain Manni-Bucau
fter, just as a compatibility module. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> | LinkedIn <https://www.linkedin.c

Re: BrokerXmlConfig property in resource element of tomee.xml file is not honoured.

2016-11-26 Thread Romain Manni-Bucau
Hi maybe check what is used throught JMS and try an absolute path, depending how it is started you can use a wrong relative path I think also did you add all the needed jars (spring etc)? Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <htt

Re: tomee git commit: why this got upgraded? error?

2016-11-23 Thread Romain Manni-Bucau
Sorry Thiago, not understanding what you mean. javaee-api and tomee are not aligned and there was not a single commit on javaee-api since 7.0-1 so why using a snapshot? Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com>

Re: tomee git commit: why this got upgraded? error?

2016-11-23 Thread Romain Manni-Bucau
no more since 17 days https://github.com/apache/tomee/commit/e88ea2fee158936f9f7230c388fb3706dd91a784 ;) Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com> | Github &

Re: [RESULT][VOTE] Apache TomEE 7.0.2

2016-11-17 Thread Romain Manni-Bucau
should be done now Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> | LinkedIn <https://www.linkedin.com/in/rmannibuc

Re: MaxTotal vs MaxActive in Tomcat/DBCP db pools in TomEE 7

2016-11-17 Thread Romain Manni-Bucau
ill hopefully help > anyone else who might run into this issue. Hope that is ok with everyone. > > You rock man! Note on that: dbcp seems to have removed dbcp1 doc (tomee 1), not sure where we can find it anymore. > Regards > > Jon > > > > On Thu, Nov 17, 2016 at 1:

Re: MaxTotal vs MaxActive in Tomcat/DBCP db pools in TomEE 7

2016-11-17 Thread Romain Manni-Bucau
can know the pool for other application to learn another way to use this pool with tomee. Hope it makes sense. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com> | Github &

Re: TomEE servers are getting stopped in the middle of the day and is throwing "Caused by: org.apache.openjpa.persistence.Persisten

2016-11-18 Thread Romain Manni-Bucau
Hi does it happen on 7.0.2? Did you configure eviction on the database (no link with the stateless pool)? Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com> | Github &

Re: Tomee Drop-in War -security mode

2016-10-12 Thread Romain Manni-Bucau
Please dont multicast the same question over and over. You got the answer on jira afaik. Le 12 oct. 2016 14:32, "Moorthy, Magesh" a écrit : > Hi, > >We are using tomee drop in war (version 7.0.0-M1) in our tomcat > server(8.0.36) to deploy our web

getResourceAsStream() for a folder

2016-10-13 Thread Romain Manni-Bucau
resource but not really a webresource so not it should be considered as a resource and therefore having a stream (which doesn't mean much for a folder). Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpres

Re: getResourceAsStream() for a folder

2016-10-13 Thread Romain Manni-Bucau
@Svetlin: thanks to catch it, was intended for dev@tomcat (thanks gmail to have completion ;)) dev@tomcat: can you check please the original question (in short: getResourceAsStream("/some/folder") returns a stream) Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau>

Re: Unable to run jsf application that uses ejb and managed bean

2016-12-08 Thread Romain Manni-Bucau
hi (again ;)) can you paste the full startup log when you deploy it as a war? Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rm

Re: authorization for ejbd/http client

2016-12-09 Thread Romain Manni-Bucau
//www.tomitribe.com > > > On Dec 6, 2016, at 2:22 PM, Romain Manni-Bucau <rmannibu...@gmail.com> > wrote: > > > > Le 6 déc. 2016 23:15, "David Blevins" <david.blev...@gmail.com> a écrit > : > > > > > >> On Dec 5, 2016, at 2:54 PM

Re: where are TomEE snapshot repositories ?

2016-12-14 Thread Romain Manni-Bucau
version was not updated - will do now - and we got some errors it seems Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibuc

Re: where are TomEE snapshot repositories ?

2016-12-13 Thread Romain Manni-Bucau
https://repository.apache.org Le 13 déc. 2016 13:23, "TomeeUser2" a écrit : > Hi, > > I am not able to find TomEE snapshot repositories. Is the location changed > ? > > Regards, > -Shan > > > > -- > View this message in context: http://tomee-openejb.979440. >

Re: JAXRS Endpoints issue when Java Security Manager Enabled

2016-12-07 Thread Romain Manni-Bucau
/src/main/java/org/apache/openejb/config/AnnotationDeployer.java#L5707 My suspicion is the scanning doesn't have access to the classes to scan. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Ol

Re: JNDI name issue

2016-12-07 Thread Romain Manni-Bucau
Hi What do you try to achieve? do you need to look up a MDB? not sure this is supposed to work Le 7 déc. 2016 14:30, "Hicham Yahiaoui" a écrit : > Hello, > > I'm using TomEE for my developments and I encoutered the following issue. > > In my system.properties file

Re: authorization for ejbd/http client

2016-12-06 Thread Romain Manni-Bucau
Le 6 déc. 2016 23:15, "David Blevins" <david.blev...@gmail.com> a écrit : > On Dec 5, 2016, at 2:54 PM, Romain Manni-Bucau <rmannibu...@gmail.com> wrote: > >> You may have a desktop app or some other scenario where on your trusted >> network, user

snapshots are back

2017-01-11 Thread Romain Manni-Bucau
Hi guys, you probably know we got some issue when our builds got migrated to the new machine. The snapshot deployment is back ( https://issues.apache.org/jira/browse/INFRA-13116) Thanks INFRA for your hard work! Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog

today's git commits noise

2016-12-03 Thread Romain Manni-Bucau
Hi guys, sorry for the noise on commit list but messed up a git script (to merge features from master) and lost part of 1.7.x. JL helped me to revert it and fix it so we should be as expected now. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <htt

Re: authorization for ejbd/http client

2016-12-05 Thread Romain Manni-Bucau
2016-12-05 19:24 GMT+01:00 David Blevins <david.blev...@gmail.com>: > > > On Dec 5, 2016, at 4:21 AM, Romain Manni-Bucau <rmannibu...@gmail.com> > wrote: > > > > Concretely the proposal can be: > > > > p.setProperty(Context.INITIAL_CONTEXT_FACTORY,

Re: Commit deletion

2016-12-05 Thread Romain Manni-Bucau
if you have the old history you can cherry pick it but guess we want to enforce the consistency with master instead of ensure 1.7 and 7.x forks - was actually one of the goal of the initial commit. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <htt

Re: authorization for ejbd/http client

2016-12-05 Thread Romain Manni-Bucau
2016-12-05 23:48 GMT+01:00 David Blevins <david.blev...@gmail.com>: > > On Dec 5, 2016, at 10:29 AM, Romain Manni-Bucau <rmannibu...@gmail.com> > wrote: > > > > 2016-12-05 19:24 GMT+01:00 David Blevins <david.blev...@gmail.com>: > > > >>

Re: Commit deletion

2016-12-05 Thread Romain Manni-Bucau
here > made. > > Shahim > > On Mon, Dec 5, 2016 at 10:14 AM, Romain Manni-Bucau [via TomEE & OpenEJB] < > ml-node+s979440n4680676...@n4.nabble.com> wrote: > > > if you have the old history you can cherry pick it but guess we want to > > enforce the cons

Re: reworking the website?

2016-12-04 Thread Romain Manni-Bucau
ok, will do now Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> | LinkedIn <https://www.linkedin.com/in/rmannibuc

<    6   7   8   9   10   11   12   13   14   15   >