Hi Vince,
I'm facing the same issue when I run the Java program from Linux environment to Arc SDe 10.1. The same code works fine If I run from UNix (Solaris) environment to Arc SDE9.3 or to ArcSDe 10.1 from RAD setup in PC. Purpose of my program is to access a point layer and make deletions based on certain criteria.
I'm using jpe_sdk.jar, icu4j_3_2.jar, jsde_sdk.jar & concurrent.jar. from Arc SDE 9.3. Is there a different set of Jars that I should use for Arc SDE 10.1 ? Below is the error I get.
Exception in thread "main" java.lang.UnsatisfiedLinkError: no sdejavautil in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1738)
at java.lang.Runtime.loadLibrary0(Runtime.java:823)
at java.lang.System.loadLibrary(System.java:1028)
at com.esri.sde.sdk.client.JGsrvr.<clinit>(Unknown Source)
at com.esri.sde.sdk.client.SeConnection.x(Unknown Source)
at com.esri.sde.sdk.client.SeConnection.<init>(Unknown Source)
......
The code I use is
SeConnection conn=null;
conn = new SeConnection(dbServer, dbPort, null, dbUser, dbPass);
return true;