Re: Setup TomEE Eclipse for contribute !

2014-05-06 Thread Jean-Louis Monteiro
lol of course -- Jean-Louis Monteiro http://twitter.com/jlouismonteiro http://www.tomitribe.com On Tue, May 6, 2014 at 10:38 PM, Romain Manni-Bucau wrote: > worth I guess ;) > > > Romain Manni-Bucau > Twitter: @rmannibucau > Blog: http://rmannibucau.wordpress.com/ > LinkedIn: http://fr.linkedin

Re: Setup TomEE Eclipse for contribute !

2014-05-06 Thread Romain Manni-Bucau
worth I guess ;) Romain Manni-Bucau Twitter: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2014-05-06 20:01 GMT+02:00 Jean-Louis Monteiro : > whatever the test editor or the IDE, the TomEE Maven Plugin

Re: TomEE and CDI

2014-05-06 Thread Alex Soto
Maybe a typo error but file should be named beans.xml and not bean.xml as well 2014-05-06 19:16 GMT+02:00 Thiago Veronezi : > The container won't manage it. Please note the... > Exam exam = new Exam(); > > Exam should also be injected. > > []s, > Thiago. > > > > On Tue, May 6, 2014 at 8:42 AM, j

Re: Cannot download 4.6.1 snapshot releases

2014-05-06 Thread agumbrecht
You'll find the links have been fixed :http://tomee.apache.org/download/tomee-1.6.1-snapshot.html They now use the repository API directly, so they will always point to the very latest SNAPSHOT versions. Andy. - -- Andy Gumbrecht http://www.tomitribe.com agumbre...@tomitr

Re: Setup TomEE Eclipse for contribute !

2014-05-06 Thread Jean-Louis Monteiro
whatever the test editor or the IDE, the TomEE Maven Plugin is worst it to try -- Jean-Louis Monteiro http://twitter.com/jlouismonteiro http://www.tomitribe.com On Tue, May 6, 2014 at 5:58 PM, Andy Gumbrecht wrote: > You can choose your path - Eclipse http://tomee.apache.org/tomee- > and-eclip

Re: TomEE and CDI

2014-05-06 Thread Thiago Veronezi
The container won't manage it. Please note the... Exam exam = new Exam(); Exam should also be injected. []s, Thiago. On Tue, May 6, 2014 at 8:42 AM, john77eipe wrote: > Thanks how I ended up doing it with a servlet. > > Code: > > *Student.java* > > import javax.annotation.PostConstruct; > >

Re: TomEE release schedule?

2014-05-06 Thread Jonathan Fisher
Thanks for the update! We all always appreciate the effort. *Jonathan Fisher* *VP - Information Technology* *Spring Venture Group* (o) 913-653-8820 On Tue, May 6, 2014 at 10:48 AM, Andy Gumbrecht wrote: > We are currently getting the 1.6.0.2 security related release ready. > > Once that is don

Re: TomEE and CDI

2014-05-06 Thread john77eipe
Any idea why I get this output, *Exam [student=null, examCode=0]*​​ ​Code: *Student.java* import javax.annotation.PostConstruct; public class Student { private String name; @PostConstruct public void init(){ System.out.println("Init in Student"); this.name = "John Eipe"; } public String getNa

Re: Setup TomEE Eclipse for contribute !

2014-05-06 Thread Andy Gumbrecht
You can choose your path - Eclipse http://tomee.apache.org/tomee-and-eclipse.html Intellij-IDEA http://tomee.apache.org/tomee-and-intellij.html Netbeans http://tomee.apache.org/tomee-and-netbeans.html Or, for the brave, your trusted text editor and Maven :-) http://tomee.apache.org/tomee-mp-

Re: TomEE release schedule?

2014-05-06 Thread Andy Gumbrecht
We are currently getting the 1.6.0.2 security related release ready. Once that is done and voted then we can focus on the next release, which will either be 1.6.1 or 1.7.0 depending on how the discussion pans out. The next OpenJPA release should be ready soon, and I'd really like to get that

Re: CDI not working inside EAR with Atmosphere (BeanManager)

2014-05-06 Thread José Luis Cetina
Ok, i will test it today. 2014-04-24 7:28 GMT-05:00 Andy Gumbrecht : > I just updated and tested this on the 1.6.1-SNAPSHOT and it looks good to > go, at least on a Win 8.1 machine. > > https://github.com/maxtorzito/tomee-codi > > I'll try and knock up a test. > > Andy. > > > On 23/04/2014 12:26

Re: TomEE and CDI

2014-05-06 Thread john77eipe
Thanks how I ended up doing it with a servlet. Code: *Student.java* import javax.annotation.PostConstruct; public class Student { private String name; @PostConstruct public void init(){ System.out.println("Init in Student"); this.name = "John Eipe"; } public String getName() { return name; }

Re: TomEE and CDI

2014-05-06 Thread Romain Manni-Bucau
well http://svn.apache.org/repos/asf/tomee/tomee/trunk/examples/deltaspike-fullstack/src/main/java/org/superbiz/deltaspike/repository/jpa/JpaUserRepository.java is not an ejb for instance Romain Manni-Bucau Twitter: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedi

Re: TomEE and CDI

2014-05-06 Thread Thiago Veronezi
http://blog.dblevins.com/2012/11/cdi-when-to-break-out-ejbs.html Basically EJB >= CDI If you don't want to use ejb features, just don't use ejbs. :) []s, Thiago. On Tue, May 6, 2014 at 8:05 AM, john77eipe wrote: > yes. but all of those uses EJB. Isn't it possible to use it without EJB? > > E

Re: TomEE and CDI

2014-05-06 Thread john77eipe
yes. but all of those uses EJB. Isn't it possible to use it without EJB? Even the most simple project (cdi-basic) listed in http://svn.apache.org/repos/asf/tomee/tomee/trunk/examples/ uses EJB. On 6 May 2014 17:05, Romain Manni-Bucau [via OpenEJB] < ml-node+s979440n4669180...@n4.nabble.com> wr

Re: TomEE and CDI

2014-05-06 Thread Romain Manni-Bucau
Hi did you already check http://tomee.apache.org/examples-trunk/ ? https://github.com/rmannibucau/JeBlog or http://svn.apache.org/repos/asf/tomee/tomee/trunk/examples/deltaspike-fullstack/ are bigger samples (more real life ones) Romain Manni-Bucau Twitter: @rmannibucau Blog: http://rmannibuca

Re: Cannot download 4.6.1 snapshot releases

2014-05-06 Thread Andy Gumbrecht
You are right, those links are broken. I'll make sure the right ones are in place asap. Andy. On 05/05/2014 22:19, Marco Dubacher wrote: Hi all The snapshot release downloads seem to be broken. Using the following link brings up an GroupItemNotFoundException: https://repository.apache.org/con

Re: TomEE and CDI

2014-05-06 Thread john77eipe
Could any one point me to a sample program that uses CDI on TomEE? Regards, John Eipe -- View this message in context: http://openejb.979440.n4.nabble.com/TomEE-and-CDI-tp4669131p4669178.html Sent from the OpenEJB User mailing list archive at Nabble.com.