[jboss-user] [JBoss Seam] - Re: Asynchronous JavaBean method not getting called

2007-08-27 Thread damianharvey
Thanks for replying. - Components.xml has async:timer and namespace - I'm not using an EJB bean, I'm using a JavaBean (see the mail example). So I don't have an interface. - My method is annotated with @Asynchronous Thanks, Damian. View the original post :

[jboss-user] [JBoss Seam] - Re: Asynchronous JavaBean method not getting called

2007-08-27 Thread [EMAIL PROTECTED]
In Seam 1.3 its core:timer. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078439#4078439 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4078439 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Asynchronous JavaBean method not getting called

2007-08-27 Thread damianharvey
Oops. Thanks Pete. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078441#4078441 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4078441 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Asynchronous JavaBean method not getting called

2007-08-27 Thread [EMAIL PROTECTED]
Hello damianharvey, as far as i know, an asynchronous call will only work if called by interface: I had a Stateless SessionBean with an annotated asynchronous Method being calld via | ... | new StatelessSessionBean().asynchMethod(); | ... | and i didn't work, so I changed to: |

[jboss-user] [JBoss Seam] - Re: Asynchronous JavaBean method not getting called

2007-08-25 Thread [EMAIL PROTECTED]
check following components.xml - async:timer... declared - async namespace declared interface of bean with contains asynch method - fully annotated with @Asynchronous - Method parameters fully anotated as needed (see docu) class of bean with contains asynch method - fully annoted, also method