It probably isn't related to GWT. You're probably running with Java Security Manager enabled, and your security policy doesn't give your app all the permissions Quartz needs. Either don't run with Java Security Manager, or arrange it so that you have all necessary permissions.
Unless... are you trying to run this code on client side? I don't know what Quartz does, but you're probably restricted on what you can do on a browser. Dealing with threads the way Quartz does is probably not allowed. ---------------------- Provavelmente teu problema não é com GWT. Você deve estar rodando sua aplicação com o Java Security Manager ativado, e a na lista de permissões necessárias não estão inclusas todas as necessárias para rodar o Quartz. Você pode desligar o Security Manager ou dar a sua aplicação todas as permissões necessárias. A não quer você que esteja tentando rodar esse código no browser... Eu não sei o que o Quartz faz, mas há limitações quanto ao que se pode fazer no browser. Provavelmente o que o Quatz faz com threads não é permitido. On Sep 21, 2:26 pm, Alisson Prestes <[email protected]> wrote: > I've never used Quartz, but it seems that your exception is not related to > GWT. Isn't Quartz used on the server-side? So why is this error coming to > the client-side? If you're using it in a service, try to handle the error > before it comes to the client. The same error occurs when you use Quartz > from another place, i.e., from another app that does not use GWT? > > Alisson Presteswww.google.com/profiles/javalisson > > > > > > > > On Wed, Sep 21, 2011 at 9:16 AM, andre_guitar7 <[email protected]> wrote: > > I'm trying to work GWT with Quartz, but gives an error: > > > "Caused by: java.security.AccessControlException: access denied > > (java.lang.RuntimePermission modifyThreadGroup)" > > > What can this be? > > > ---------------------------------------------- > > > Pessoal, estou tentando fazer o Quartz funcionar com GWT, mas ao > > executar aparece o erro: > > > "Caused by: java.security.AccessControlException: access denied > > (java.lang.RuntimePermission modifyThreadGroup)" > > > Que pode ser isso? > > > Obrigado! > > > -- > > You received this message because you are subscribed to the Google Groups > > "Google Web Toolkit" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]. > > For more options, visit this group at > >http://groups.google.com/group/google-web-toolkit?hl=en. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
