in the java webstart (jnlp) file, you can specify a nativelib tag to download binary files. You can also specify the loading of different for different operating systems by specifying the os attribute as well.
eg:
<resources os="Linux"> <nativelib href="....jar"/> </resources> <resources os="Windows"> <nativelib href="....jar"/> </resources> <resources os="Mac OS X"> <nativelib href="....jar"/> </resources>
but how can I specify even different binaries for different architectures? e.g. win32 and win64 or linux 32 and linux 64bit. OS. Where can I find a list of options for the os attribute?
java java-web-start jnlp
clamp
source share