Hello,
I'm seeing my particular case I am not able to create a Quartz job that executes more then the once which is the time it is created.
Here is what I have for example:
@Name( "someScheduler" )
@Stateful
@Scope( ScopeType.APPLICATION )
@Startup
public class SomeAction
implements Something
...
@Create
@TransactionTimeout( 1800 )
public void create()
{
executeJob( new Date(), "0 1 * * * * " );
}
The job fails to execute at whatever scheduled time I provide to it.
Thanks
Sorry I meant to add the @Asynchronous is in the interface. I have tried it on the method itself as well with the same result.