applet - Java 7 update21 security pop ups -
i running java7 update21 , getting issues applets. checked oracle docs java7 update21. there got know refraining use of unsigned applets , introduction of new security pop up,which prompts either block or unblock code, in java7 update21. don't want see prompt while running applets. workaround user perspective check "enable-hide warning , run protections". want block default java control panel settings.i want block prompt code.i tried adding manifest attribute trusted-only true given in oracle docs. application misbehaving after adding attribute. there anyother approach should proceed with?
i figured out solution case. using self signed jars, there third party self signed jars. , there mixed code involved. according release notes of java 7 update 21 need add the trusted-library: true attribute manifest of each jar used applet.
after adding attribute manifest of jars (my own jar , third party jars) java loads classes in separate class loader. applet has access classes needs (third party ones). applet loads without prompt.
Comments
Post a Comment