I am running an applet, in which I set have to make a JFrame stay on top at all times, using frame.setAlwaysOnTop(true);. It throws a securityException, even though the applet has been signed (locally by me).
I'm getting a warning first , which says the applet contains both signed and unsigned code. How do I get rid of this? I have signed the applet using JarSigner. I am looking for a way to make the 'alwaysontop' work without making changes to the client-end policy file.
Please help...
EDIT: The HTML used to load the file
try{
document.writeln("<object type='application/x-java-applet;version=1.5'");
document.writeln("width='200' height='300' name='ind_signed'");
document.writeln("codebase='http://java.sun.com/update/1.5.0/jinstall-1_5-windows-i586.cab#Version=5,0,0,5'>");
paramWriter("type", "application/x-java-applet;version=1.5");
paramWriter("code", "net.sourceforge.peers.gui.MainFrame");
paramWriter("codebase", ".");
paramWriter("archive", "ind_signed.jar");
paramWriter("username", usr);
paramWriter("password", pwd);
paramWriter("domain", dom);
document.writeln("</object>");
}catch(ignoreex){
window.location.href = "index.html";
}
function paramWriter(param, value){
document.writeln("<param name='" + param + "' value = '" + value + "'>");
}
EDIT2: I just found that it is 2 different issues. The security exception is different from the signed and unsigned components warning.
The mixed code warning occurs because of
AudioClip outgoingClip = getAudioClip(getCodeBase(), "outgoing.wav");//
globals.outgoingClip = outgoingClip;
Is there anyway of signing a wav file, or do I have to use a stream?
paramWriter("archive", "blabla.jar");Do you truly have a Jar calledblabla.jaror are you just wasting my time & patience? – Andrew Thompson Jul 14 '11 at 14:56