Need help installing Audiere

I’m new to using libraries and wondering if anybody has experience setting up the Audiere sound library? I’m able to compile AudiereTest.java fine. But it won’t run. I get the following error:

Exception in thread “main” java.lang.NoClassDefFoundError: AudiereTest (wrong name: org/aegisknight/audiere/AudiereTest)

I assume this has something to do with classpaths? I’m kinda lost. Some info: I’m using WindowsXP, with Jdk 1.5 which is installed in C:\jdk1.5.0
I had put the library and class files under c:\jdk1.5.0\bin\org\aegisknight\audiere

Then I went and threw through everything under c:jdk1.5.0\bin for good measure. But it didn’t help.

You must put the audiere jar into your classpath, into c:/jdk1.5.0/jre/lib/ext/ and into c:/program files/java/j2se1.5.0/lib/ext/…
This should work.
You must then put the dll into your application path or into the bin path (c:/jdk1.5.0/jre/bin/ and into c:/program files/java/j2se1.5.0/bin/).

Audiere is a pretty good lib :slight_smile: Very fast too…

Chman