It is not legal to call your ejb implementation. You must use the remote. There are optimising hints that you give to speed up ejb to ejb calls in a single jvm (see volunteer docs).
It might be legal to have a non-ejb implementation class which you can call direct. Then make the ejb implementation delegate to the non-ejb implementation. See Bridge and Proxy patterns from the Gof book. Douglas Su wrote: > > Hi all, > I was able to access my entity bean with its remote interface, but I have > been having trouble accessing my bean with its local interface. I have > stuck with this problem for 2 days now. Please help!! -- Christopher William Turner, http://www.cycom.co.uk/ Java development since 1996 http://club.cycom.co.uk/tms.htm Terminology Management software http://club.cycom.co.uk/wt.htm Wind Turbine blade design software _______________________________________________________________ Multimillion Dollar Computer Inventory Live Webcast Auctions Thru Aug. 2002 - http://www.cowanalexander.com/calendar _______________________________________________ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user
