Enabling JAX-RS with OpenEJB standalone

2013-05-09 Thread Chris.Christo
Hi, I'm trying to startup an OpenEJB server with JAX-RS enabled. I've got a rest class (@Path + @Singleton) but when I curl at it I get no response. My system.properties are as follows: java.util.logging.manager = java.util.logging.LogManager openejb.system.apps = true openejb.embedded.remotabl

Re: Enabling JAX-RS with OpenEJB standalone

2013-05-09 Thread Romain Manni-Bucau
Hi What does mean openejb here? - openejb standalone? - openejb in a custom main() Do you have openejb-cxf-rs in the classpath? Le 9 mai 2013 14:22, "Chris.Christo" a écrit : > Hi, I'm trying to startup an OpenEJB server with JAX-RS enabled. I've got > a rest class (@Path + @Singleton) but

Re: Enabling JAX-RS with OpenEJB standalone

2013-05-09 Thread Chris.Christo
I'm using a build of the assembly/openejb-standalone (the one that creates an "apache-openejb-4.6.0-SNAPSHOT.tar.gz"). Then I unzip and dump my app in apps/ and my system.properties in conf/ No custom main() or anything like that. On 9 May 2013, at 13:27, Romain Manni-Bucau wrote: > Hi > >

Re: Enabling JAX-RS with OpenEJB standalone

2013-05-09 Thread Romain Manni-Bucau
openejb-rest and openejb-cxf-rs are missing in the distro to support rest services *Romain Manni-Bucau* *Twitter: @rmannibucau * *Blog: **http://rmannibucau.wordpress.com/* *LinkedIn: **http://fr.linkedin.com/in/rmannibucau* *Gith

Re: Enabling JAX-RS with OpenEJB standalone

2013-05-09 Thread Romain Manni-Bucau
PS: it will only work for .jar or .ear without any war IIRC. *Romain Manni-Bucau* *Twitter: @rmannibucau * *Blog: **http://rmannibucau.wordpress.com/* *LinkedIn: **http://fr.linkedin.com/in/rmannibucau* *Github: https://github.com

Re: Enabling JAX-RS with OpenEJB standalone

2013-05-09 Thread Romain Manni-Bucau
Ok, finally hacked it up: https://issues.apache.org/jira/browse/OPENEJB-2020 *Romain Manni-Bucau* *Twitter: @rmannibucau * *Blog: **http://rmannibucau.wordpress.com/* *LinkedIn: **http://fr.linkedin.com/in/rmannibucau* *Github: h

Re: Enabling JAX-RS with OpenEJB standalone

2013-05-09 Thread Chris.Christo
Yeah Romain, I see there is no 'openejb-cxf-rs.jar' within the lib folder. I'm confused then, there are all these cxf-* jars plus a couple of openejb-cxf* jars in the lib folder of this OpenEJB standalone. I'm wondering what purpose they serve. Basically I want the OpenEJB server that matches h

Re: Enabling JAX-RS with OpenEJB standalone

2013-05-09 Thread Romain Manni-Bucau
should be trunk openejb-standalone now (not sure it was an error of packaging or we thought of custom main when we did the table to be honest) wars work too now :) and some light features of servlets works too (don't expect the whole set of servlet features btw) *Romain Manni-Bucau* *Twitter: @r

Re: Enabling JAX-RS with OpenEJB standalone

2013-05-09 Thread Chris.Christo
I got this email after I posted my previous one! Thanks, for this. The cxf-rs jars are in the lib folder now. However I have a new a problem with the build, when I call the openejb script (from my mac): sh target/apache-openejb-4.6.0-SNAPSHOT/bin/openejb start I get the following three lines o

Re: Enabling JAX-RS with OpenEJB standalone

2013-05-09 Thread Romain Manni-Bucau
does the agent exist? how did you get the new build? if you rebuilt it yourself retry cleaning target folders before (mvn clean) *Romain Manni-Bucau* *Twitter: @rmannibucau * *Blog: **http://rmannibucau.wordpress.com/* *LinkedIn:

Re: Enabling JAX-RS with OpenEJB standalone

2013-05-09 Thread Chris.Christo
Yeah I mvn clean install'd it myself. The javaagent in the lib folder is coming up as openejb-javaagent-4.6.0-20130509.040703-72.jar Obviously there is a mismatch of versions for the javaagent?? On 9 May 2013, at 16:16, Romain Manni-Bucau wrote: > does the agent exist? how did you get the new

Re: Enabling JAX-RS with OpenEJB standalone

2013-05-09 Thread Romain Manni-Bucau
so build it yourself too ;) mvn clean install -pl assembly/openejb-standalone -am -Dmaven.test.skip=true should be fine i think or just mvn clean install in container/openejb-javaagent *Romain Manni-Bucau* *Twitter: @rmannibucau * *Blog: **http://rmannibucau.word

Re: Enabling JAX-RS with OpenEJB standalone

2013-05-09 Thread Chris.Christo
Yes! it works! Rest also running now and sending back sexy responses. support 2nd to none as always. Take a bow. Thanks a lot Romain! On 9 May 2013, at 16:22, Romain Manni-Bucau wrote: > so build it yourself too ;) > > mvn clean install -pl assembly/openejb-standalone -am > -Dmaven.test.skip

Re: Enabling JAX-RS with OpenEJB standalone

2013-05-09 Thread Romain Manni-Bucau
np great it works now :) *Romain Manni-Bucau* *Twitter: @rmannibucau * *Blog: **http://rmannibucau.wordpress.com/* *LinkedIn: **http://fr.linkedin.com/in/rmannibucau* *Github: https://github.com/rmannibucau* 2013/5/9 Chris.Ch