Click to See Complete Forum and Search --> : Error


Zied Bouziri
March 2nd, 2000, 11:53 AM
Hi

Any one know this ERROR :

java.lang.UnsatisfiedLinkError: no HELLO in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1249)
at java.lang.Runtime.loadLibrary0(Runtime.java:470)
at java.lang.System.loadLibrary(System.java:778)
at HelloWorld.(HelloWorld.java:7)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:715)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:840)
at com.sun.web.core.ServletWrapper.handleRequest(ServletWrapper.java:140)
at com.sun.web.core.InvokerServlet.service(InvokerServlet.java:169)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:840)
at com.sun.web.core.ServletWrapper.handleRequest(ServletWrapper.java:140)
at com.sun.web.core.Context.handleRequest(Context.java:375)
at com.sun.web.server.ConnectionHandler.run(ConnectionHandler.java:135)



Thanks

mike200
April 12th, 2000, 03:06 PM
From what I have seen so far, your app did not
load the Hello library and it tried to call the
native method. Check these:
Win32: make sure your library is called HELLO.dll
and the the it is either in the path or the same
directory as your app.
UNIX: make sure your library is called libHELLO.so
and that the LD_LIBRARY_PATH has the path to the
so.