Deploying JTrac

2008-09-03 Thread Jeremy Cowgar
I am trying to deploy JTrac (http://www.jtrac.info/) on Geronimo and am having problems that I believe is due to class loading. JTrac works fine when you use the Jetty server that comes with it and just call run.bat. I tried just deploying the .war by copying it to the deploy directory. This ge

Re: EJB Injection Problem

2008-09-02 Thread Jeremy Cowgar
at 5:40 AM, Jeremy Cowgar wrote: I am having problems using a stand alone program. Injection only works with jee app clients, typically deployed as a client module in an ear. I wouldn't describe these as "stand alone" thanks david jencks I have the following code: public

EJB Injection Problem

2008-09-02 Thread Jeremy Cowgar
I am having problems using a stand alone program. I have the following code: public class Main { @EJB private GreeterRemote greeter; public static void main(String[] args) { new Main(); } public Main() { System.ou