I have an applet which is doing some sound recording work. When I run it on eclipse with Applet viewer , the sound recording and its play back is working fine. But when I put that applet in browser, all the buttons and controls are visible but the recording and play back is not working. Any reasons for that?
I have signed the jar but still it is not working. I verified my jar from jarsigner. It messages
jar is unsigned (Signature missing or unparsable)
What does this message means actually?
Update
The Jar is now signed and verified (as per comments), new exception is:
java.lang.SecurityException: trusted loader attempted to load sandboxed resource from file:/D:/Junaid/workspace/AudioProjectApplet/bin/com/audio/
at com.sun.deploy.security.CPCallbackHandler$ParentCallback.check(Unknown Source)
at com.sun.deploy.security.CPCallbackHandler$ParentCallback.access$1500(Unknown Source)
at com.sun.deploy.security.CPCallbackHandler$ChildElement.checkResource(Unknown Source)
at sun.plugin2.applet.Plugin2ClassLoader.checkResource(Unknown Source)
at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
at sun.plugin2.applet.Plugin2Manager.initAppletAdapter(Unknown Source)
at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)