We recently ran into an issue where suddenly customers using Java applet for multi file upload started seeing security warning and the worrying thing about this dialog was the "Block" was the first choice so customers keep on clicking Block.
The reason this dialog was coming is that our applet was making a http call to download some properties files and Java applet was treating it as a security warning because Applet jars were signed but the properties file were not and they can't be signed.
The fix for this issue was to bundle the properties file in the jar file.
Temporarily you can also ask users to enable this setting
The reason this dialog was coming is that our applet was making a http call to download some properties files and Java applet was treating it as a security warning because Applet jars were signed but the properties file were not and they can't be signed.
The fix for this issue was to bundle the properties file in the jar file.
Temporarily you can also ask users to enable this setting
Comments
Post a Comment