I have a signed applet on my website that had been working fine for nearly a year. Today, however, it's giving my users a mixed code warning. I found here that certain Apache components, which I happen to be using, can generate a mixed code warning. However, there are two things that concern me.
First of all, my applet consists of a single jar file that's signed, and when I use
jarsigner -verify my_signed_file.jar
I get thejar verified
output. (It's not linking to any external libraries, all of the compiled code is inside this jar file.)I'm getting this message all of a sudden, even though the my applet jar hasn't been modified in nearly a year. Both I and my client have been using the Java 1.7 runtime for a while now without getting this message, so why would we be getting the message today?
Any thoughts or ideas would be appreciated. Thank you.
--Jay