I have a situation where the version of an applet provided by a service provider is outdated, and I am wondering if I can somehow install the updated version of the applet's JAR locally (somehow in the classpath I'm guessing) and have the Java client load that instead of the one at the path specified by the <applet>
tag.
If you want specifics, the product is BigBlueButton and the problem I'm trying to solve is with the v0.81 of the client applet not working with newer versions of java. Our service provider has not updated their JAR for some reason, and until/unless they do we'll be forced to install an old version of Java on all our 6000 systems.
So, since I have the ability to push files to our systems, I'm wondering if I can put the developer-provided updated JAR files somewhere where it will be loaded by the browser instead of the one provided by the server. I can also potentially prevent the browser from downloading the one from the server (e.g. via proxy tricks) if that helps. Is this possible? If so it would be a neat workaround that would prevent us having to deploy multiple Java runtimes in our environment.