Topic Options
Rate This Topic
#134499 - 05/09/06 10:07 AM help needed with this java api error
remedybuff Offline
Stealth Member

Registered: 05/05/06
Posts: 76
Loc: New Jersey, USA
hi , my program compiles fine but when i try to run it i get this error.. can anyone help me figure out what the problem is?

any help would be appreciated


Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\Program Files\Java\jdk1.5.0_06\bin\arjni63.dll: Can't find dependent libraries
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1676)
at java.lang.Runtime.loadLibrary0(Runtime.java:822)
at java.lang.System.loadLibrary(System.java:992)
at com.remedy.arsys.api.Proxy.<clinit>(Proxy.java:51)
at com.remedy.arsys.api.DefaultProxyManager.getProxy(DefaultProxyManager.java:60)
at com.remedy.arsys.api.Util.ARSetServerPort(Util.java:1373)
at remdemo.main(remdemo.java:31)
Press any key to continue . . .

Top
#134500 - 05/31/06 09:08 AM Re: help needed with this java api error [Re: David07]
Maverick Offline
Stealth Member

Registered: 05/20/05
Posts: 17
The run time is not able to find the relevant libraries in the path.Check the path and classpath variables to check if the have the location of the library files mentioned.

After that is done recompile and run.This should solve the issue.

Top