0

When I open up applet I see the below security warning/error.

enter image description here

I have googled and found the solution from http://java.com/en/download/help/error_mixedcode.xml saying to edit the options from settings. Its valid but my clients can never understand this.

Just want to confirm, Can we get ride of this by adding anything in applet/object tag or are there any other ways. Please help me out on this.

Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433
Max
  • 1,334
  • 5
  • 16
  • 34

1 Answers1

3

The page linked in the question is for end users, for developers see the real fix at Mixing Privileged Code and Sandbox Code: Securely Deploying Privileged Applications and Applets Without a Mixed Code Warning.

Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433
  • Thanks for the response Andrew.. Trying it out. Will let you know shortly. – Max May 07 '13 at 10:11
  • OK, I just took a very long time to sort out that I am doing a right thing. When Adding "Trusted-Library: true" in MANIFEST.MF file then jar's getting classNoFoundException. Even I have tried to update the jar's using ant build. Still I get the same error. – Max May 07 '13 at 13:00
  • From the below link I can see that user removed the 'Trusted-Library' attribute to get things work. http://stackoverflow.com/questions/16084324/java-applet-stopped-working-after-update-to-jre-7u21?rq=1 that happens with the latest java update – Max May 07 '13 at 13:10