I an wanting to create a Java application that is installed on multiple platforms (Windows,Mac OS, Linux) as a part of this install I wish to register a URL protocol handler, so that my app loads when links are clicked.
i.e. I want something like this: myprotocol://example.com
Is there any sort of consolidated way of doing this? Or some sort of framework that extrapolates the difference across the different OS's.
I would recommend that you use Java Webstart rather than try to invent a new link scheme. It's already supported by any browser that has Sun Java installed.