On Nov 20, 2006, at 11:37 AM, Manu George wrote:
Hi David,
I just created a stateless session bean
package org.apache.openejb.test.stateless;
@Stateless
@Local ({BasicStatelessBusinessLocal.class})
@Remote ({BasicStatelessBusinessRemote.class})
public class BasicStatelessAnnotatedBean extends BasicStatelessBean {
}
This doesn't seem to get deployed. I may be missing something but from
the debugging I did there seems to be problems in the ClassFinder of
xbean while using ASM. Please have a look.
Hmm. Not going to be able to dig into this just yet. If you add one
of these to the ejb-jar.xml, do the rest of the annonations kick in?
<session>
<ejb-name>BasicStatelessBean</ejb-name>
<ejb-
class>org.apache.openejb.test.stateless.BasicStatelessBean</ejb-class>
</session>
-David
Thanks
Manu
On 11/20/06, David Blevins <[EMAIL PROTECTED]> wrote:
On Nov 20, 2006, at 1:48 AM, Manu George wrote:
> Hi David,
> Have you created the beans that we are going to test
> annotations? If not shall I go ahead and create the beans as
extending
> from the current test beans. I plan to create the session beans
> required for testing the annotations you have implemented.
Go for it!
You can throw everything into an itests/openejb-itests-annotated-
beans/ module.
Note sure just yet how we'll wire it in to run with the other tests.
If you have any ideas, I'm all ears.
-David