| Products | Versions | 
|---|---|
| TIBCO InConcert | - | 
| Not Applicable | - | 
Resolution:
 Under this option, it is necessary to explicitly load the icjni 
library sometime before logging in to the IC server.  As coded 
in my test app:
   System.loadLibrary( "icjni" );
   icClient = new IcClient();
   ...
Note that Solaris automagically maps the "icjni" into the full 
name of the library, "libicjni.so" but on Solaris you must have the LD_LIBRARY_PATH set
and on HP UX you must have SHLIB_PATH set before starting the IcJava application.
Another point is that it is necessary (and 
appropriate) to call exit() to terminate the application at the 
proper time.