java web start still not working
This is a follow up to a prior issue posted here. I think I'm making progress but I'm still struggling.
I'm having trouble getting a java web start application working. If you go to this website and try to start it, you'll see the java 6 icon come up and then disappear followed by nothing (if you don't, you're getting a different result from me). It's as if it's hanging.
Anyone know what could be causing this?
Re: java web start still not working
Did you look at the console output? (google for how to configure this for your system)...there is a AccessControlExceptionoccurring
Code :
Exception in thread "AWT-EventQueue-0" java.security.AccessControlException: access denied (java.io.FilePermission images/left_arrow.gif read)
at java.security.AccessControlContext.checkPermission(Unknown Source)
at java.security.AccessController.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkRead(Unknown Source)
at sun.awt.SunToolkit.getImageFromHash(Unknown Source)
at sun.awt.SunToolkit.getImage(Unknown Source)
at javax.swing.ImageIcon.<init>(Unknown Source)
at javax.swing.ImageIcon.<init>(Unknown Source)
at framecomponents.SouthPanel.<init>(SouthPanel.java:47)
at framecomponents.GameFrame.<init>(GameFrame.java:54)
at game.GameControl.<init>(GameControl.java:130)
at Main$1.run(Main.java:9)
at java.awt.event.InvocationEvent.dispatch(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
Re: java web start still not working
No! I had no idea how to make the output console show up. I will google this as you suggested.