Hi

The company I'm working for has an applet that does the following:
- downloads a pdf that the system generated
- adds in a signed section to verify the document
- re-uploads the modified pdf back to the server

The locally sign bit has to be local for other security reasons.

However, as with life, there is a wrinkle. The applets can only run on Firefox as Chrome and IE/Edge appear to have locked things down a lot more.

So my challenge is to find a way to make the above steps work, preferrable for free or included in Java.

My first port of call is Java Web Start. This means ajusting the applet to java code but can be linked to the server for the resources/jar file. However I am, unsure how to pass the url for the pdf (assuming the java web started code can stream in the code and get the local file fine).

Are there any other ways of doing the above which you have used, and what other problems/considerations are there?


Thanks in advance