CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Error

  1. #1
    Join Date
    Jan 2000
    Location
    Tunisia
    Posts
    11

    Error

    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


  2. #2
    Join Date
    Apr 2000
    Location
    Boston
    Posts
    124

    Re: Error

    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.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured