Reputation: 29
I've a problem with Java applets.
I developed two Java applets for my application, the applets are signed with a certificate, include the MANIFEST file with permission and they run correctly. There is a problem when Oracle releases a new Java update and the applets don't work, it seem that IE look at the latest version of Java and I need to update it every time.
What can cause this problem?
Upvotes: 2
Views: 112
Reputation: 48804
Applets are all but deprecated. Your best bet is to migrate away from them, because more and more browsers are removing support from them.
If you need to enable users to upload files to your server, there are numerous resources and tutorials out there.
Upvotes: 1