[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-12-12 Thread flavia.rainone
Oh, yes. I forgot to tell you you must run the script build.sh (or build.bat) that is contained in the build directory. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993009#3993009 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-12-12 Thread flavia.rainone
Sorry for my previous post. What you have to do is just check out everything from Branch_AOP_1_5. This branch also includes the server. Once this is done, compile everything by running build.sh (or build.bat if you're using windows) And you will have a complete JBoss AS server, with the patched

[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-12-12 Thread stalep
hm, thats strange, could you tell what files you copied over? if jbossaop isnt working at all anymore many of the jboss applications will not work either. eg (ejb3, cache, etc), so i guess you should have gotten a lot of other errors too (even though i havent tested it). View the original post :

[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-12-11 Thread Giordacchio++
Ok, I have compiled to source code obtaining the Aop jars but now my app. server doesn't intercept anymore.. When will be published a new version of AOP ? 1.5.3.GA ? or at least something compiled with all the jars versions (stand-alone and app. server integrated libraries) ?? Thank you :-

[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-12-04 Thread flavia.rainone
Hi! I'm not sure whether this will work. You can give it a try, though. If it doesn't work, you'd better download JBoss AS src (instead of an installer) replace the jboss-aop source code (in the aop/src/main and aop/src/jdk15 directories) by its svn counter part and compile JBoss AS. To compile

[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-12-04 Thread Giordacchio++
Ok, I'm checking out this version from SVNI suppoose I'll have to compile it, isn't it ?? One question: after the compilation with ant I'll have to copy the jars into the jboss-aop-jdk50.deployer directory of my jboss AS ?? Thx :-) View the original post : http://www.jboss.com/index.html

[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-12-01 Thread [EMAIL PROTECTED]
Since you are not a commiter, use anonymous svn [url]http://anonsvn.jboss.org/repos/jbossas/branches/Branch_AOP_1_5/[url] what you get when you check it out is what will be in 1.5.3 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3990422#3990422 Reply to the p

[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-12-01 Thread Giordacchio++
Thx !! Where can I find the 1.5.x branches ? I tried on : http://anonsvn.jboss.org/repos/jbossas/projects but inside the directory branches I've found only version 2.0 alpha. I need intead a 1.5.x, possibly the 1.5.3. I've also tried with: https://svn.jboss.org/repos/jbossas/branches/Branch_AOP

[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-11-30 Thread [EMAIL PROTECTED]
This has been fixed in svn for both the 1.5.x branch and trunk (2.0) http://wiki.jboss.org/wiki/Wiki.jsp?page=BuildingJBossAOPFromSubversion View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3990150#3990150 Reply to the post : http://www.jboss.com/index.html?mod

[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-11-30 Thread [EMAIL PROTECTED]
Hmm, when weaving, we copy across the method so | class Blah{ | | @Destroy | void someMethod(){ | //do stuff | } | } | becomes | class Blah{ | @Destroy | void someMethod(){ | //hooks for aop | | @Destroy | aop$someMethod(); |

[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-11-30 Thread [EMAIL PROTECTED]
The last code snippet was messed up, this is the woven code | class Blah{ | @Destroy | void someMethod(){ | //hooks for aop | | @Destroy | aop$someMethod(); | } | } | I will fix it so it becomes | class Blah{ | @Destroy | void someMethod(){ |

[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-11-30 Thread Giordacchio++
I forgot to post the code of my advice binding: | private AdviceBinding sessionbinding; | private String bindstring = | "execution(*it.webscience.atlasweb.controller.SessionManagerAction->save(..))"; | | sessionbinding = new AdviceBinding(bindstring, null); | sessionbinding.add