[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: javassist.NotFoundException: transactional (my annotatio

2004-05-24 Thread mriou
I'm not sure I understand your reply. The transaction stuff here is my transaction stuff. I have my own transactional API, declared a @transactional tag in my code and specified an interceptor in jboss-aop.xml that I created. So I felt like I was just in the scope of your example, no ? And

[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: javassist.NotFoundException: transactional (my annotatio

2004-05-24 Thread Bill Burke
Ok, so you implemented an transaction interface? i.e. | package org.mriou; | public interface transaction {...} | ??? If so, you must provide the fully qualified name of the tag within the doclet tag. i.e. | /** | * @@org.mriou.transaction (RequiresNew) | */ | View the

[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: javassist.NotFoundException: transactional (my annotatio

2004-05-23 Thread Bill Burke
Mriou, That is because I have not written any annotations yet for the transaction stuff and you have to use -xml (in ant xml=true) instead (the old annotation stuff). I guess what I messed up is that you cannot mix and match these 2 features. I guess I need a different syntax for the xml