• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

LDAP error

 
Ranch Hand
Posts: 67
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
When I run my appln on websphere test env 5.1 server and login as single sign on

I am getting
java.lang.NoClassDefFoundError: BluesException
at
Ldap ldap = new Ldap();

Can anyone tell me the reason for such kind of problem.I have never used this.

Thanks in advance.
 
Ranch Hand
Posts: 84
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey Ratan what i can suggest you is that at runtime you dont have neccessary jar for execution of your code...

java.lang.NoClassDefFoundError: BluesException
at
Ldap ldap = new Ldap();

If you are saying at run time you are getting this exception then that means you have compiled you code with required jar but at run time you are not providing necessary classes(or jar)

Just add necessary jar to your classpath..

Let me know if i can assist you more !!!
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic