It appears that the bean classes in JHSDK such as JCaVersion and JCaPackage do not work well in my Glassfish web container. In fact, my app server just blows up. It gives no errors or warnings in the log.
Maybe it has something to do with the dependence on a DLL. I’m not sure. It runs fine until I try to use the bean in the JSF page.
Fortunately, I have a work around. I wrote my my own version of JCaVersion. I loop through my array of JCaVersions (which is returned from JCaPackage getVersionList()), and build an array of MyVersion instance with the same data. Then I can bind my array of MyVersion instances to my JSF component.