[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Deployment Problem -- Unable to replace existing file

2008-06-13 Thread rweed
I had the file locking issue on Windows with 5.0.0.beta4, so I tried the Linux version and there is no locking problem there. JBoss goes through the undeploy/deploy process, BUT it is still accessing the old classes. SO, under Linux, you still need to restart the server to effect your changes

[jboss-user] [Beginners Corner] - Re: Deploy/Undeploy on JBOSS

2008-06-13 Thread rweed
Are there nightly (or any) builds of JBoss AS? I would like to get a new copy of the jboss-vfs.jar. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4158121#4158121 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4158121 _

[jboss-user] [Beginners Corner] - Nightly builds of JBoss 5 beta?

2008-06-16 Thread rweed
Are there nightly (or weekly or whatever) builds of JBoss 5 that I can get at? I'm having a problem with Beta 4 that is listed as fixed in the bug database and I would like to get the latest version (however unstable it might be). Thanks, Rick View the original post : http://www.jboss.com/in

[jboss-user] [EJB/JBoss] - JBOSS 5 (rev 74649) having EJB rmote injection issues

2008-06-17 Thread rweed
This problem does not exist in Beta4. I pulled down the trunk and built it to get around the file locking issues on redeploy in Beta4 which were real annoying. My stateless POJO has only the @Stateless annotation and the interface only has @Remote -- each of them has NO additional attributes.

[jboss-user] [Beginners Corner] - Re: Nightly builds of JBoss 5 beta?

2008-06-18 Thread rweed
"PeterJ" wrote : You can always get it from the subversion repository at http://anonsvn.jboss.org/repos/jbossas/trunk/ and build it yourself. A lot of the docs here still seem to reference CVS usage, but I did finally figure out how to pull down the svn trunk and build it. I do periodic svn upd

[jboss-user] [EJB/JBoss] - Re: JBOSS 5 (rev 74649) having EJB rmote injection issues

2008-06-18 Thread rweed
As I said, this worked in Beta4 and the approach is right out of the Manning EJB3 book. Interface: package ic.poc.wc; | | import javax.ejb.Remote; | | @Remote | public interface CoverageWC { | public int retrieveSubmission(int covSubmissionId); | } Implementation: package ic.