• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Cramming for solving a java problem

 
Ranch Hand
Posts: 95
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I got a problem , my java code is reffering a class method of a jar file (which comes along with installation).
But while debugging I found that it could not found that method so it is throwing the following exception

java.lang.UnsatisfiedLinkError: no Jawin in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1403)
at java.lang.Runtime.loadLibrary0(Runtime.java:788)
at java.lang.System.loadLibrary(System.java:832)
at com.develop.jawin.Bootstrap.<clinit>(Bootstrap.java:32)
at com.develop.jawin.FuncPtr.<init>(FuncPtr.java:32)
at com.develop.jawin.win32.Ole32.<clinit>(Ole32.java:30)
at com.documentum.km.dca.WordContent$Application.<init>(WordContent.java:700)
at com.documentum.km.dca.WordContent.<init>(WordContent.java:75)
at com.documentum.km.dca.WordContent.<init>(WordContent.java:85)
at com.documentum.km.dca.DocumentInDocumentTree.getContent(DocumentInDocumentTree.java:1488)
at com.documentum.km.dca.Publisher.publishLevel(Publisher.java:292)
at com.documentum.km.dca.Publisher.publishLevel(Publisher.java:361)
at com.documentum.km.dca.Publisher.process(Publisher.java:112)
at com.documentum.km.dca.Agent.run(Agent.java:128)
at java.lang.Thread.run(Thread.java:536)
Please suggest me immediately as I have serious problem in production environment.
 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
SREE

This display name doesn't comply to the JavaRanch naming rules described here

We require your display name to be two words: your first name, a space, then your last name. Obviously short first name (like that above) is not allowed. Accounts with invalid display names get deleted, often without warning.

If you want to get help from this community, we require that you follow the rules of the community.

Thanks, Anna

[ May 31, 2004: Message edited by: Anna Kapricornikova ]
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
as the stack trace clearly mentions .. it cant find ur jar in the library path. Ensure that you have your jar placed in the classpath. if u change the system classpath then u might have to restart ur app server(in case u are using one). If u are using an app server also ensure that u have deleted all the cases created by it.

Also if the jar belongs to java standard lib then ensure that jdk is in your path.
[ May 31, 2004: Message edited by: Lalita Sattavat ]
 
Politics n. Poly "many" + ticks "blood sucking insects". Tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic