I have two questions. Is there a way to detect if a user does not
accept the signed web applet? Also, if you accept the signed applet
and check to not remind again, how do you clear that so it prompts
again in IE? Thanks
> I have two questions. Is there a way to detect if a user does not
> accept the signed web applet?
You can check from unsigned code whether loading of signed code has
succeeded. A simple Class.forName should do.
> Also, if you accept the signed applet
> and check to not remind again, how do you clear that so it prompts
> again in IE? Thanks
You should be able to do that from the Java Control Panel.
Tom Hawtin
bdog4@hotmail.com - 31 Jul 2006 13:56 GMT
Thanks Thomas for the reply, found that in the control panel. I'm very
new to java, do you have an example of how to check or any web resource
on how to implement that check? Thanks
> > I have two questions. Is there a way to detect if a user does not
> > accept the signed web applet?
[quoted text clipped - 9 lines]
>
> Tom Hawtin
Thomas Hawtin - 01 Aug 2006 11:30 GMT
> Thanks Thomas for the reply, found that in the control panel. I'm very
> new to java, do you have an example of how to check or any web resource
> on how to implement that check? Thanks
I don't know of any.
If you try it, make sure you put signed and unsigned code in different
packages. Code with different signatures can't exist in the same
package. You can fiddle it with class loaders, but that still does not
permit package access.
Tom Hawtin