problem loading an applet

hello guys,

i am getting the following error when trying to display my applet. I have a jar which I am also calling.

java.lang.NoClassDefFoundError: UTFuntional (wrong name: appletTesting/UTFuntional)

here is the html

<HTML>

<BODY>

<APPLET CODE="UTFuntional.class" ARCHIVE="DSMUpTool.jar" width="600" height="600">

</APPLET>

</BODY>

</HTML>

please help, i tried running both in IE and Mozilla

[595 byte] By [kris@sunresortsa] at [2007-11-26 15:55:18]
# 1
what package is the class file in?What I'm thinking is happening is that you've got that class organized into it's own "folder". Try something like this:myPackagename.yourclass.class I ran into a similar issue awhile ago... Hope that helps, I'm just throwing a dart
mchristiana at 2007-7-8 22:15:58 > top of Java-index,Security,Signed Applets...
# 2
hey man,thanks a lot. How stupid was that from my part. These small mistake was really a pain.before creating a package manually ALWAYS check that your folder structure is correct.kris
kris@sunresortsa at 2007-7-8 22:15:58 > top of Java-index,Security,Signed Applets...