Deploy unpacked jar

2012-01-17 Thread Mansour Al Akeel
From this page: http://openejb.apache.org/deployments.html An unpacked jar As of 1.0 beta1, OpenEJB supports unpacked ejb jars. Simply meaning that you don't need to pack your ejb's into a jar file in order to use them in OpenEJB. You still need to follow the ejb jar layout and include an

Re: Deploy unpacked jar

2012-01-17 Thread Romain Manni-Bucau
Hi, it only manages file, not directory. But some files have not to be unpacked for scanning. - Romain 2012/1/17 Mansour Al Akeel mansour.alak...@gmail.com From this page: http://openejb.apache.org/deployments.html An unpacked jar As of 1.0 beta1, OpenEJB supports unpacked ejb jars.

Re: Deploy unpacked jar

2012-01-17 Thread Mansour Al Akeel
Romain, sorry but I didn't get your answer. Can you please kindly elaborate, and give some details ? What do I need to do to deploy and redeploy an unpacked jar ? On Tue, Jan 17, 2012 at 11:33 AM, Romain Manni-Bucau rmannibu...@gmail.com wrote: Hi, it only manages file, not directory. But

Re: Deploy unpacked jar

2012-01-17 Thread Romain Manni-Bucau
the current code doesn't handle directories, it can probably be enhanced in next releases. My second sentence referred to some application servers which need to unpack all archives (even jar files) to scan them which is not our case. - Romain 2012/1/17 Mansour Al Akeel

Re: Deploy unpacked jar

2012-01-17 Thread Mansour Al Akeel
Thank you Romain, can you please let me know if this info is still correct? As of 1.0 beta1, OpenEJB supports unpacked ejb jars. Simply meaning that you don't need to pack your ejb's into a jar file in order to use them in OpenEJB. You still need to follow the ejb jar layout and include an

Re: Deploy unpacked jar

2012-01-17 Thread Romain Manni-Bucau
yep. create a apps/ folder in tomee directory. then move your exploded jar in this folder. Finally start TomEE and the magic should appear. I tried this commands and it works: cp

Re: Deploy unpacked jar

2012-01-17 Thread Mansour Al Akeel
openejb standalone is what I am using. And that's what docs say. On Tue, Jan 17, 2012 at 12:31 PM, Romain Manni-Bucau rmannibu...@gmail.com wrote: yep. create a apps/ folder in tomee directory. then move your exploded jar in this folder. Finally start TomEE and the magic should appear.

Re: Deploy unpacked jar

2012-01-17 Thread Romain Manni-Bucau
did you try without using the deploy command but simply using the apps dir (even with the standalone server)? - Romain 2012/1/17 Mansour Al Akeel mansour.alak...@gmail.com openejb standalone is what I am using. And that's what docs say. On Tue, Jan 17, 2012 at 12:31 PM, Romain Manni-Bucau

Re: Deploy unpacked jar

2012-01-17 Thread David Blevins
The apps/ dir itself supports unpacked jar files. As Romain guessed, the deploy tool only supports zip files (jars, ears, wars, rars). This is because the command line deploy tool actually uploads the jar file by reading the file from disk and sending to the server over a socket. We could