I am pushing my own test event queue over the System eventqueue. And in TestEQueue I have over loaded the dispatchEvent method with one call to super.dispatchEvent

      TestEQueue mytestqueue = new TestEQueue();
      Toolkit.getDefaultToolkit().getSystemEventQueue().push(TestEQueue);

But for some reason dispatching in the new TestQueue fails with AccessControlException. Where as the same event is successfully dispatched in the main program without TestEQueue.

How can this be possible as both the queues will running in the same thread group? How can I debug this issue? This is part of a very large test codebase, so I am not able to copy the functional code. Can this be related to security manager?

link|improve this question

the api doc is for reading :-) from getSystemEventQueue(): throws if a security manager exists and its java.lang.SecurityManager.checkAwtEventQueueAccess method denies access to the EventQueue – kleopatra Sep 16 '11 at 7:30
this call succeeds without exception – Shishir Sep 16 '11 at 18:12
feedback

2 Answers

nobody know how do you built your own test event queue over the System eventqueue, maybe you miss there invokeAndWait,

useful infos and here

just my curiosity, if your test ends with success, then please test that with SwingUtilities.invokeAndWait, if there some differencies (awaiting nothing), and I marked your thread for notifying any changes :-)

this code should be works for Testing purposes,

import java.awt.AWTEvent;
import java.awt.EventQueue;
import java.awt.Toolkit;
import java.lang.reflect.InvocationTargetException;

public class QueueTest {

    public static void main(String[] args) throws InterruptedException, InvocationTargetException {
        EventQueue eventQueue = Toolkit.getDefaultToolkit().getSystemEventQueue();
        eventQueue.push(new MyEventQueue());

        EventQueue.invokeAndWait(new Runnable() {

            @Override
            public void run() {
                System.out.println("Run");
            }
        });
    }

    private static class MyEventQueue extends EventQueue {

        @Override
        public void postEvent(AWTEvent theEvent) {
            System.out.println("Event Posted");
            super.postEvent(theEvent);
        }
    }

    private QueueTest() {
    }
}
link|improve this answer
In my case I am not triggering any UI processing from main thread, I am adding a new menu and simulated menu key press and release.My concern whether the events triggered because of this actions which are processed in EDT of new queue is having les permissions than original EDT – Shishir Sep 16 '11 at 3:41
I have tested printing the access permissions for both main dispatch thread and my test event queue EDT permissions. They differ.Why do they differ, they belong same thread group – Shishir Sep 16 '11 at 5:31
@siri no idea, could you edit your post with rellated code :-), maybe will be lots of fun – mKorbel Sep 16 '11 at 6:02
i was wrong permissions for both original EDT and TestEQueue are same... but still checkPermission call fails – Shishir Sep 18 '11 at 8:24
I (still) ensure that you cann't multiplayed EventQueue, one EDT Queue that's came from Swing package(s), just replace/clear/add/waiting only one Thread, not sure but from Java5 not possilble to somehow to playing with single Swing Threading, there are lots of promises that in Java7 will be implemented multi Queue, :-) I can't interesting somehow about that until Java7_010 -15upd, then will be Java7 stable and interesting for me, :-) – mKorbel Sep 18 '11 at 9:00
feedback

Note that push() replaces the existing EventQueue; it doesn't add a new queue. I think the premise of your question may be incorrect. See also this Q&A.

link|improve this answer
yes you are right, but my doubt was related to whether events dispatched from this new queue's event dispatch thread have different access permissions from that of original queue's EDT. – Shishir Sep 16 '11 at 3:38
Sorry, I can't reproduce the effect you describe. – trashgod Sep 16 '11 at 4:45
I think that's not possible, @trashgod thanks for final result, my empty head, +1 – mKorbel Sep 16 '11 at 4:57
@trashgod I have checked the permissions they are same.. but still AccessControlException is thrown only from new pushed queue... I am not to debug the reason for this?Any Help? – Shishir Sep 16 '11 at 9:15
You could look for Methods in java.security that throw AccessControlException being called in your code. – trashgod Sep 16 '11 at 14:29
show 9 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.