I build a signed applet to upload files from visitor computer, I used WildcardFileFilter class to get files that start with some string....
In-order to do this i needed to include Apachae Common io 2.4 jar file as library in my project, Now my Applet is signed but when i run it, It gives mixed code warning as show here
http://docs.oracle.com/javase/6/docs/technotes/guides/jweb/mixed_code.html
Now i followed in instructions and added Trusted-Library: true in manifest file then it didn't loads that library and on running applet i got error org/apachae/...../WildcardFileFilter class not found.
I signed this common-io_2.4.jar library file then this warning went away But User prompted twice to accept applet which is annoying too...
How can i get trusted common-io file for using wildcard or some other advice......