I am getting the following exception when running an applet: Exception in thread "AWT-EventQueue-4" java.lang.NoClassDefFoundError: ice/net/SnapshotCacheManager

but the file is inside the jar.

I searched online and found it might be related to the applet not looking in the current directory and i need to add .; to the CLASSPATH but i am not sure how to add it to the build.xml

Thanks

Doron

Edit: Finally I figured it out, it wasn't an ant problem or the build XML, I got this exception because I signed two jars containing the same package differently, so there was a collision, not a very informative exception....

link|improve this question

69% accept rate
feedback

1 Answer

up vote 0 down vote accepted

it might be useful to see what is in your current build.xml file, but the section you probably want to look at is the <target> element specifically the <src path> and <fileset> elements. Here is a VERY rough example with some guiding variables.

<property name="classes.home"          value="/myproject/src"/>

<target name="compile_myproject" depends="clean">
    <javac destdir="${classes.home}" debug="off" optimize="on" deprecation="on">
        <classpath>
            <fileset dir="/location/of/jars/">
                <include name="*.jar"/>
                <exclude name="jar-I-dont-want.jar"/>
            </fileset>
            <fileset dir="/location/of/axis2/jars">
                <include name="**/*.jar"/>                    
            </fileset>
        </classpath>
        <src path="${classes.home}"/>
        <include name="/test/**/*.java"/>
        <include name="other/location/*.java"/>
        <exclude name="/debug/and/useless/files/**/*.java"/>
    </javac>
</target>

note that ${classes.home} is a special variable defined at the top of the build.xml file. Many variables can be used to make things easier and specify relative paths.

link|improve this answer
but I have a problem that the applet doesnot recognize the file inside the jar when ran. how can i define it? – Doron Sinai Mar 24 '11 at 20:56
hmm, thats a tough one. funny thing is I know I've seen that same exception under very similar circumstances (where everything compiled and ran). But I cannot remember the exact cause. I assume you have the correct import statements at the tops of your class files, otherwise that would cause compile errors I think (its been a while since ive done that though)... Did you check your compile output to make sure it compiled without errors. Ant will still assemble a jar with an old class file if it finds one, which might not have the same definition in it maybe... thats all i got for now... sorry. – gnomed Mar 24 '11 at 23:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.