I'm working on a small Java project for my client. I wrote an app-let that will gather some information from the user, invoke an API to fetch some more information from a remote server, then write that information to the user's hard drive. I developed it under VisualAge and it works OK.
Now I need to deploy this to about a dozen users. So I created a JAR with all the classes I need and built a little HTML file to invoke my app-let. My plan is to install these two files in the user's hard drive then tell him to open the HTML with his browser. That works just fine until I try to run that API or write to my hard drive. That's when I run into all kinds of Java Security exceptions.
I've read through several web pages that talk about certificates and signed app-lets and policy files and keystores and my eyeballs are starting to bleed. As usual the examples I've found are wrong or incomplete.
Can anyone point me toward a resource that will explain this stuff simply, and possibly have some examples that might actually work? How about a simple checklist of the steps I need to take to get this thing deployed. I think that once I know the steps to take I can figure out the details but right now it's just a large black hole.
Many thanks