function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
VPVP 

PartnerSamples6_0.zip - partnerSample.jar packaging incorrect

Just wanted to point this out - the partnerSample.jar in PartnerSamples6_0.zip is packaged incorrectly. It uses the jar manifest to add jar files to the classpath which lie inside the partnerSample.jar itself. This is incorrect - as per Sun's JAR doc "The Class-Path header points to classes or JAR files on the local file system, not JAR files within the JAR file or classes on the network. To load classes in JAR files within a JAR file into the class path, you must write custom code to load those classes. For example, if MyJar.jar contains another JAR file called MyUtils.jar, you cannot use the Class-Path header in MyJar.jar's manifest to load classes in MyUtils.jar into the class path.".
VPVP
So all I did was to extract the jar contents and ran the samples from there. ALl this happened effortlessly.