[JBoss-user] [EJB 3.0] - Re: Filling nested collections with specific values

2006-04-26 Thread villi
relationship like tasks and subtasks, you are really following the foreign key reference, the constraint you used to select your object does not affect that. Regards, Villi View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3939574#3939574 Reply to the post

[JBoss-user] [EJB 3.0] - Re: Alpha 6 - EJB3StandaloneBootstrap.scanClassPath - very s

2006-04-26 Thread villi
Hi, I ran some tests to try to give you something concrete. You should be able to reproduce this by doing the following: Create @Remote interface with 50 methods like: | public int testMethod00(int[] arg1,int arg2); | Create @Stateless bean implementing interface with dummy

[JBoss-user] [EJB 3.0] - Alpha 6 - EJB3StandaloneBootstrap.scanClassPath - very slow

2006-04-25 Thread villi
Hi, I am having problems with embedded EJB3: In my case, I am running from within eclipse, the launch configuration has a *lot* of class directories and jars. EJBStandaloneBootstrap.boot(null) takes 2 seconds. EJBStandaloneBootstrap.scanClassPath() takes 8 minutes on 100%cpu (1.9Ghz Pentium M).

[JBoss-user] [EJB 3.0] - Re: EJBContext not bound

2006-02-16 Thread villi
Thanks for the quick response. Is this the final binding or will it be changed to match the spec ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3924164#3924164 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3924164

[JBoss-user] [EJB 3.0] - EJBContext not bound

2006-02-15 Thread villi
Hi, I wanted to access EJBContext from a utility method and tried to use JNDI lookup : | new InitialContext().lookup("java:comp/EJBContext") | This throws NameNotFoundException. I get the same exception when I move the code to a @PostConstruct method inside a Stateless bean. Isn't this s