For my App.jar which needs the Xith3d library, I include in the Jar’s Manifest the line:
Class-Path: xith.jar
It works fine on all platforms, in case the xith.jar stays next to the App.jar .
Also when I move the xith.jar to a (root) folder on the same drive it works. For example:
Class-Path: /Libs/xith.jar
But I can’t make it to work with Win32, when the lib is on another drive (on the same local computer). What I would like to have is something like this (which doesn’t work unfortunately) :
Class-Path: file://localhost/V:/Libs/xith.jar
Edit: With Linux it works easy of course, because it got a very developer and volume sharing friendly filesystem. For example:
Class-Path: /mnt/drive/Libs/xith.jar
Even under networked Win32 PCs you can do something like:
Class-Path: \\Server1\Store\Lib\xith.jar
(Of course you can also put both string in the class-path line with a space as divider, so it works on Unix and Win32.)
But how to make it work on a local Win32 PC ?

