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?

link|improve this question

Show the HTML that loads the applet. There is something in the mix that is not signed (or not signed correctly). Do you have an URL where we can see it? What is the use case where you'd want to open something from a web page & have it stay 'always on top'? It wreaks of 'pop-up ads'. – Andrew Thompson Jul 14 '11 at 12:30
I have updated the question. And, it is a SIP Webphone, in which the caller info must be on top, in a separate frame, not a popup ad! – anirudh4444 Jul 14 '11 at 14:28
paramWriter("archive", "blabla.jar"); Do you truly have a Jar called blabla.jar or are you just wasting my time & patience? – Andrew Thompson Jul 14 '11 at 14:56
I just changed the name before posting it here. Its ind_signed.jar if you must know – anirudh4444 Jul 14 '11 at 15:08
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.